diff --git a/Makefile b/Makefile index c181d87..cf26ca8 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,11 @@ +GO_TAGS := migrated_fynedo + +ifeq ($(shell uname -s),Linux) +GO_TAGS := $(GO_TAGS),x11 +endif + build: - go build -tags migrated_fynedo + go build -tags "$(GO_TAGS)" # dylibbundler doesn't seem to pick up on the Python framework dependency, # so the last 3 cmds move it over manually. This is a bit fragile though