summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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))