diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 20 |
1 files changed, 7 insertions, 13 deletions
@@ -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 |
