mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 19:01:26 +01:00
Merge pull request #238 from go-gitea/make-install
Really use go install on make install
This commit is contained in:
commit
ba2e75a0ab
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue