2024-01-05 12:46:17 -06:00
|
|
|
all:
|
2021-10-06 11:17:43 -05:00
|
|
|
@echo
|
2024-01-05 12:46:17 -06:00
|
|
|
@echo This is the core gui package 'go.wit.com/gui/gui'
|
2021-10-06 11:17:43 -05:00
|
|
|
@echo
|
2024-01-05 12:46:17 -06:00
|
|
|
@echo It creates a binary tree of widgets
|
|
|
|
@echo The widgets are things like Windows, Buttons, Labels, etc
|
2023-12-03 16:08:39 -06:00
|
|
|
@echo
|
2023-12-14 10:36:56 -06:00
|
|
|
ifeq ($(GO111MODULE),)
|
|
|
|
@echo
|
|
|
|
@echo If you are compiling this here, you probably want to set GO111MODULE
|
|
|
|
@echo
|
|
|
|
@echo Setting GO111MODULE means that the version you are compiling has plugins
|
|
|
|
@echo that get compiled against this current running version of the code
|
|
|
|
@echo Otherwise, the GO language plugins can complain about being compiled against
|
|
|
|
@echo mis-matched versions
|
|
|
|
@echo
|
|
|
|
@echo export GO111MODULE=off
|
|
|
|
@echo
|
2023-12-03 16:08:39 -06:00
|
|
|
endif
|
2021-10-06 11:17:43 -05:00
|
|
|
|
2024-01-05 12:46:17 -06:00
|
|
|
redomod:
|
|
|
|
rm -f go.*
|
2024-01-11 19:32:40 -06:00
|
|
|
GO111MODULE= go mod init
|
|
|
|
GO111MODULE= go mod tidy
|
2023-03-12 08:47:16 -05:00
|
|
|
|
2019-05-08 15:04:18 -05:00
|
|
|
# should update every go dependancy (?)
|
|
|
|
update:
|
2021-10-06 11:17:43 -05:00
|
|
|
git pull
|
|
|
|
go get -v -t -u ./...
|
|
|
|
|
2022-10-16 08:07:13 -05:00
|
|
|
doc:
|
2023-12-03 16:08:39 -06:00
|
|
|
godoc -v
|
2022-10-21 11:40:08 -05:00
|
|
|
|
2023-12-14 10:36:56 -06:00
|
|
|
submit-to-docs:
|
|
|
|
GOPROXY=https://proxy.golang.org GO111MODULE=on go get go.wit.com/gui@v1.0.0
|