summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2022-10-08 23:22:47 -0500
committerJeff Carr <[email protected]>2022-10-08 23:22:47 -0500
commit086986b6b8f55d15d18595bcbf3f76c023365b61 (patch)
tree9f1dc4da5b2d125f7a017418d4d9912e16b71039 /Makefile
parentf92a50e2e665a18e2201f1d6714025dcc39301cc (diff)
parent45644ef9bc333f5def62d1c7f474dc96274e63fa (diff)
Merge branch 'master' into jcarr
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