diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,14 +1,17 @@ -all: goimports vet +all: @echo - @echo This is the core gui package 'go.wit.com/gui/gui' + @echo This is the core GUI package 'go.wit.com/gui' @echo - @echo It creates a binary tree of widgets - @echo The widgets are things like Windows, Buttons, Labels, etc + @echo "It creates a binary tree of widgets (Windows, Buttons, etc)" + @echo "This is the interface to the GUI GO plugin (ncurses, GTK, etc)" @echo + @echo "todo: rewrite this using protobufs" + @echo + @make goimports vet vet: @GO111MODULE=off go vet - @echo go vet: this go library package builds okay + @echo go vet: this go library should build okay goimports: goimports -w *.go |
