Update makefile

This commit is contained in:
Derek Parker
2015-02-28 21:08:43 -06:00
parent f3019b7478
commit 134a53bcf7

View File

@ -4,13 +4,13 @@ PREFIX=github.com/derekparker/delve
build: build:
go build github.com/derekparker/delve/cmd/dlv go build github.com/derekparker/delve/cmd/dlv
ifeq "$(UNAME)" "Darwin" ifeq "$(UNAME)" "Darwin"
codesign -s dlv-cert ./dlv codesign -s $(CERT) ./dlv
endif endif
install: install:
go install github.com/derekparker/delve/cmd/dlv go install github.com/derekparker/delve/cmd/dlv
ifeq "$(UNAME)" "Darwin" ifeq "$(UNAME)" "Darwin"
codesign -s dlv-cert $(which dlv) codesign -s $(CERT) $(which dlv)
endif endif
test: test: