Skip to content

Commit

Permalink
Use go build in make file
Browse files Browse the repository at this point in the history
  • Loading branch information
lfkeitel committed Feb 6, 2018
1 parent c09027b commit 1179388
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ bindata:
go-bindata -o src/bindata/bindata.go -pkg bindata templates/... public/...

dhcp:
GOBIN="$(GOBIN)" go install -v -ldflags "$(LDFLAGS)" -tags '$(BUILDTAGS)' ./cmd/dhcp
go build -o bin/dhcp -v -ldflags "$(LDFLAGS)" -tags '$(BUILDTAGS)' ./cmd/dhcp

management:
GOBIN="$(GOBIN)" go install -v -ldflags "$(LDFLAGS)" -tags '$(BUILDTAGS)' ./cmd/pg
go build -o bin/pg -v -ldflags "$(LDFLAGS)" -tags '$(BUILDTAGS)' ./cmd/pg

# development tasks
doc:
Expand Down

0 comments on commit 1179388

Please sign in to comment.