diff options
author | Thomas Boerger <tboerger@suse.de> | 2016-11-24 14:38:37 +0100 |
---|---|---|
committer | Thomas Boerger <tboerger@suse.de> | 2016-11-24 14:38:37 +0100 |
commit | cc8c57458fa0f1e6c1189e9eeff32d98eda7e681 (patch) | |
tree | 16a5939dc35d05d26ce16e14ca2eefe17db90728 /Makefile | |
parent | b6b616b336333c69255b0436a81d712dcd8dcdc9 (diff) | |
download | gitea-cc8c57458fa0f1e6c1189e9eeff32d98eda7e681.tar.gz gitea-cc8c57458fa0f1e6c1189e9eeff32d98eda7e681.zip |
Really use go install on make install
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |