summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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