summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2022-10-11 11:59:42 -0500
committerJeff Carr <[email protected]>2022-10-11 11:59:42 -0500
commit3c899365154e48aefbc0b5ee48cd089f49339cb2 (patch)
tree13f3c0aa281d17c55306ed2e0323aa5188087e04 /Makefile
parent2294e22484be61a934ca8b523f4aeb40d20d6196 (diff)
parent770fa06a18652b30db0cd4ee64e8e89d06d7de2e (diff)
Merge branch 'master' into develv0.3.1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 7 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index 2b7dd82..7225bce 100644
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,13 @@
-# simple sortcut to push all git changes
-push:
- git checkout devel
- git pull
- git add --all
- -git commit -a -s
- git push
+all:
+ @echo
+ @echo "make examples # will run all the examples"
+ @echo "make update # full git update"
+ @echo
# should update every go dependancy (?)
update:
git pull
go get -v -t -u ./...
-merge-devel:
- git checkout master
- git pull origin master
- git merge devel
- git push origin master
- git checkout devel
+examples:
+ make -C gui-example