We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e765a8 commit c1065e6Copy full SHA for c1065e6
1 file changed
client/Makefile
@@ -30,10 +30,13 @@ glideup:
30
${DEV_ENV_CMD} glide up
31
32
build:
33
- ${DEV_ENV_CMD} go build -a -installsuffix cgo -ldflags '-s' -o deis .
+ ${DEV_ENV_CMD} make binary-build
34
@$(call check-static-binary,deis)
35
36
-install: build
+binary-build:
37
+ go build -a -installsuffix cgo -ldflags '-s' -o deis .
38
+
39
+install:
40
cp deis $$GOPATH/bin
41
42
installer: build
0 commit comments