aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-16 22:39:25 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-16 22:39:25 +0200
commit131a862d313f12808d63e832126317a27226940b (patch)
tree28302ac8be9e42b52ca053371d3e789b19c40819 /Makefile
parent451c3b30ca4f4b009509dffbe9c98a4c3b7ffeb0 (diff)
downloadgit-bug-131a862d313f12808d63e832126317a27226940b.tar.gz
fix makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4c1c83bc..116f6454 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
all: build
-build: git-bug
+build:
go generate
go build -tags=deploy_build .
@@ -8,4 +8,4 @@ install:
go generate
go install -tags=deploy_build .
-.PHONY: install
+.PHONY: build install