Browse Source

Really use go install on make install

master
Thomas Boerger 8 years ago
parent
commit
cc8c57458f
No known key found for this signature in database GPG Key ID: 5A388F55283960B6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Makefile

+ 2
- 2
Makefile 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)


Loading…
Cancel
Save