Skip to content

Commit

Permalink
Merge pull request #22 from coreos/simplify
Browse files Browse the repository at this point in the history
Makefile: Remove the bin/% target and just use build
  • Loading branch information
dghubble authored Aug 3, 2017
2 parents c888db9 + 4668e4a commit 9afdfb7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ GOPATH_BIN:=$(shell echo ${GOPATH} | awk 'BEGIN { FS = ":" }; { print $1 }')/bin
all: build

.PHONY: build
build: bin/terraform-provider-matchbox

bin/%:
@go build -o bin/$* -v github.com/coreos/terraform-provider-matchbox
build:
@go build -o bin/terraform-provider-matchbox -v github.com/coreos/terraform-provider-matchbox

.PHONY: install
install: bin/terraform-provider-matchbox
Expand Down

0 comments on commit 9afdfb7

Please sign in to comment.