Added Makefile

This commit is contained in:
Jonathan Barrow 2022-09-03 15:28:31 -04:00
parent 04fece81e8
commit 04ceddeaa7
No known key found for this signature in database
GPG key ID: E86E9FE9049C741F

8
Makefile Normal file
View file

@ -0,0 +1,8 @@
update_submodule:
git submodule init
git submodule update --remote --merge
git add -A
git commit -am 'Updated submodules'
git push -u origin master
.PHONY: update_submodule