소스 검색

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

Really use go install on make install
tags/v1.0.0
Thomas Boerger 7 년 전
부모
커밋
ba2e75a0ab
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      Makefile

+ 2
- 2
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…
취소
저장