summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2016-12-05 18:35:22 +0100
committerGitHub <noreply@github.com>2016-12-05 18:35:22 +0100
commit1b5b297c398a547b506029ac5a527ba9a5891ffb (patch)
tree7376be44473b7550626474432ef47fe22594ca6d /Makefile
parent2b63f32b8a49d5d704dfa3f4d16e54fcbc0769d4 (diff)
downloadgitea-1b5b297c398a547b506029ac5a527ba9a5891ffb.tar.gz
gitea-1b5b297c398a547b506029ac5a527ba9a5891ffb.zip
Actually fix 'make build' (#353)
* Actually fix bloddy 'make build'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 03b4c7cb56..75aef7f3cf 100644
--- a/Makefile
+++ b/Makefile
@@ -14,6 +14,7 @@ LDFLAGS += -X "code.gitea.io/gitea/modules/setting.BuildGitHash=$(SHA)"
TARGETS ?= linux/*,darwin/*,windows/*
PACKAGES ?= $(shell go list ./... | grep -v /vendor/)
+SOURCES ?= $(shell find . -name "*.go" -type f)
TAGS ?=
@@ -86,8 +87,7 @@ install: $(wildcard *.go)
.PHONY: build
build: $(EXECUTABLE)
-.PHONY: $(EXECUTABLE)
-$(EXECUTABLE): $(wildcard *.go)
+$(EXECUTABLE): $(SOURCES)
go build -v -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@
.PHONY: release