diff options
author | Ruben Pollan <meskio@sindominio.net> | 2018-06-12 19:24:13 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2018-06-12 20:19:56 +0200 |
commit | a154c2b3b12a1eb61580729fd7d66025b5b4ebf6 (patch) | |
tree | 0ddd5271a8eebed6c7837d27d6f45266dd91b483 /Makefile | |
parent | 909c059c7c0cc4e38d326afe377be7e6fb8385c0 (diff) |
[pkg] compile for gtk_3_18 or older
- Resolves: #45
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -1,9 +1,15 @@ -.PHONY: all build icon locales generate_locales clean +.PHONY: all get build icon locales generate_locales clean -all: icon locales build +all: icon locales get build + +get: + go get -tags 'gtk_3_18' . build: - go build -ldflags "-X main.version=`git describe --tags`" + go build -tags 'gtk_3_18' -ldflags "-X main.version=`git describe --tags`" + +test: + go test -tags 'gtk_3_18' ./... clean: make -C icon clean |