summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-02-25 14:05:25 -0600
committerJeff Carr <[email protected]>2023-02-25 14:05:25 -0600
commitf3bb68396afa7452ecf1c8d4744c825a9d81057c (patch)
tree00b55a17cee7a8e2f795c479a84a844779993c1c /Makefile
parent355e5ec968427c2b07b78fec12224f31a65df740 (diff)
The debugging window is finally useful
the gui enabled debugging works --gui-debug works from the command line The debug window can now select things debugging now includes widget types all the debug flags work finally working debugging flags via gui checkboxes add debian packaging rules use log() in the toolkit use a standard log() to simplify debugging flags add reference to 'GO Style Guide' use the same LICENSE from the GO developers. TODO: make this threadsafe TODO: fix plugin stuff Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 14 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index db08887..95b9d29 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,12 @@
.PHONY: README.md
all: README.md
+ reset
@echo
- @echo "make cmds # will run all the Example demos and commands"
+ @echo "make examples # will run all the Example demos and commands"
@echo "make update # full git update of all the dependencies"
@echo
- #make -C cmds/helloworld
+ make clean
make plugins
# should update every go dependancy (?)
@@ -13,7 +14,16 @@ update:
git pull
go get -v -t -u ./...
-cmds: cmds-buttonplugin cmds-console-ui-helloworld cmds-debug cmds-helloworld cmds-textbox
+deb:
+ cd debian && make
+ -wit mirrors
+
+examples: \
+ cmds-buttonplugin \
+ cmds-console-ui-helloworld \
+ cmds-helloworld \
+ cmds-debug \
+ cmds-textbox
cmds-buttonplugin:
make -C cmds/buttonplugin
@@ -51,6 +61,7 @@ README.md: doc.go
clean:
rm -f toolkit/*.so
+ cd debian && make clean
plugins: plugins-gocui plugins-andlabs