1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-16 07:18:37 +00:00

Merge pull request #238 from go-gitea/make-install

Really use go install on make install
This commit is contained in:
Thomas Boerger
2016-11-24 15:29:17 +01:00
committed by GitHub

View File

@@ -66,8 +66,8 @@ test:
check: test
.PHONY: install
install: $(BIN)/$(EXECUTABLE)
cp $< $(GOPATH)/bin/
install: $(wildcard *.go)
go install -v -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)'
.PHONY: build
build: $(BIN)/$(EXECUTABLE)