diff options
author | Ruben Pollan <meskio@sindominio.net> | 2018-06-25 18:39:49 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2018-06-25 18:47:08 +0200 |
commit | e24355110a908af9fc95ac0fd4c2754562a125ec (patch) | |
tree | 287fc23470378d75d7fd7c374e57d8e28a97666e /Makefile | |
parent | 3a27fa8dd3da90897b6bc7f8a035f1325313e4ac (diff) |
[feat] rename bitmask_go to standalone
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,11 +1,11 @@ -.PHONY: all get build build_go icon locales generate_locales clean +.PHONY: all get build standalone icon locales generate_locales clean TAGS ?= gtk_3_18 all: icon locales get build get: - go get -tags $(TAGS) . ./bitmask_go + go get -tags $(TAGS) . ./standalone build: go build -tags $(TAGS) -ldflags "-X main.version=`git describe --tags`" @@ -13,11 +13,11 @@ build: test: go test -tags $(TAGS) ./... -build_go: - go build -tags "$(TAGS) bitmask_go" -ldflags "-X main.version=`git describe --tags`" +standalone: + go build -tags "$(TAGS) standalone" -ldflags "-X main.version=`git describe --tags`" build_win: - go build -tags "bitmask_go" -ldflags "-H windowsgui" + go build -tags "standalone" -ldflags "-H windowsgui" clean: make -C icon clean |