summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2021-10-06 11:17:43 -0500
committerJeff Carr <[email protected]>2021-10-06 11:17:43 -0500
commit883159b940e711fbd3560edff8fcc3a2c2f68612 (patch)
treea6405d455cbde7a72fdb7bcee56ab225f308d971 /Makefile
parentb40030a6b11a74a0ba1cb34d1eb12d49a3d3ed44 (diff)
EXAMPLE: further improvements to the example
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index df5d201..7225bce 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,13 @@
+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
- wit go update
- # go get -v -t -u ./...
+ git pull
+ go get -v -t -u ./...
+
+examples:
+ make -C gui-example