summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-13 13:30:13 -0600
committerJeff Carr <[email protected]>2024-01-13 13:30:13 -0600
commit34f33db94a04ecb24087713a87556a9672b74aa7 (patch)
tree859cffb2deda834cc0b9050089da7e8329777e7a /Makefile
parent69ad3b12ac3f44703ae8a6c8a771af56f902252b (diff)
always build with GO111MODULES until stable
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index fa541fc..4066a79 100644
--- a/Makefile
+++ b/Makefile
@@ -16,18 +16,21 @@ ifeq ($(GO111MODULE),)
@echo
@echo export GO111MODULE=off
@echo
- sleep 3
+ sleep 1
endif
make nocui gocui andlabs
nocui:
- go build -C nocui -v -buildmode=plugin -o ../nocui.so
+ # go build -C nocui -v -buildmode=plugin -o ../nocui.so
+ make -C nocui
gocui:
- go build -C gocui -v -buildmode=plugin -o ../gocui.so
+ # go build -C gocui -v -buildmode=plugin -o ../gocui.so
+ make -C gocui
andlabs:
- go build -C andlabs -v -buildmode=plugin -o ../andlabs.so
+ # go build -C andlabs -v -buildmode=plugin -o ../andlabs.so
+ make -C andlabs
something:
ifeq (,$(wildcard go.mod))