summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2018-10-09 12:23:02 -0500
committerRuben Pollan <meskio@sindominio.net>2018-10-10 16:28:31 -0500
commit965a712d0102269fcf54e1f459e37113c31218af (patch)
treec93e465f3373e88410d7409dee4ce36de05c43d8 /Makefile
parent5f24152b972f4e478e15f04b795e8943f8a559d7 (diff)
[pkg] make standalone the default build
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 9c86e07..066028f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: all get build standalone icon locales generate_locales clean
+.PHONY: all get build build_bitmaskd icon locales generate_locales clean
TAGS ?= gtk_3_18
@@ -6,7 +6,7 @@ all: icon locales get build
get:
go get -tags $(TAGS) ./...
- go get -tags "$(TAGS) standalone" ./...
+ go get -tags "$(TAGS) bitmaskd" ./...
build:
go build -tags $(TAGS) -ldflags "-X main.version=`git describe --tags`"
@@ -14,11 +14,11 @@ build:
test:
go test -tags $(TAGS) ./...
-standalone:
- go build -tags "$(TAGS) standalone" -ldflags "-X main.version=`git describe --tags`"
+build_bitmaskd:
+ go build -tags "$(TAGS) bitmaskd" -ldflags "-X main.version=`git describe --tags`"
build_win:
- powershell -Command '$$version=git describe --tags; go build -tags "standalone" -ldflags "-H windowsgui -X main.version=$$version"'
+ powershell -Command '$$version=git describe --tags; go build -ldflags "-H windowsgui -X main.version=$$version"'
clean:
make -C icon clean