diff --git a/Makefile b/Makefile index fb3815b..c8816e7 100644 --- a/Makefile +++ b/Makefile @@ -51,6 +51,10 @@ build: go build -o ${BIN} -ldflags="-s -w -X 'main.buildVersion=${VERSION}' -X 'main.buildDate=${BUILD_DATE}'" stuffbin -a stuff -in ${BIN} -out ${BIN} ${STATIC} +.PHONY: run +run: build + ./${BIN} + .PHONY: deps deps: go get -u github.com/knadh/stuffbin/...