Browse Source

Actually fix 'make build' (#353)

* Actually fix bloddy 'make build'
master
Kim "BKC" Carlbäcker GitHub 8 years ago
parent
commit
1b5b297c39
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Makefile

+ 2
- 2
Makefile View File

@@ -14,6 +14,7 @@ LDFLAGS += -X "code.gitea.io/gitea/modules/setting.BuildGitHash=$(SHA)"


TARGETS ?= linux/*,darwin/*,windows/* TARGETS ?= linux/*,darwin/*,windows/*
PACKAGES ?= $(shell go list ./... | grep -v /vendor/) PACKAGES ?= $(shell go list ./... | grep -v /vendor/)
SOURCES ?= $(shell find . -name "*.go" -type f)


TAGS ?= TAGS ?=


@@ -86,8 +87,7 @@ install: $(wildcard *.go)
.PHONY: build .PHONY: build
build: $(EXECUTABLE) build: $(EXECUTABLE)


.PHONY: $(EXECUTABLE)
$(EXECUTABLE): $(wildcard *.go)
$(EXECUTABLE): $(SOURCES)
go build -v -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@ go build -v -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@


.PHONY: release .PHONY: release


Loading…
Cancel
Save