2
1
Fork 0

Makes binary resulting from makefile smaller

This commit is contained in:
sloum 2021-06-25 15:57:57 -07:00
parent 78f969418a
commit b8ce1fcd87
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ MAN1DIR := ${MANDIR}/man1
.PHONY: build
build:
${GOCMD} build -o ${BINARY}
${GOCMD} build -ldflags "-w -s" -o ${BINARY}
.PHONY: install
install: install-bin install-man clean