qrz/Makefile
Paul Lecuq b52f93d7d6
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
updated qrz
2020-04-12 15:25:09 +02:00

19 lines
227 B
Makefile

# qrz Makefile
GOCMD=go
GOBUILDCMD=${GOCMD} build
GOOPTIONS=-mod=vendor -ldflags="-s -w"
RMCMD=rm
BINNAME=qrz
SRCFILES=cmd/qrz/*.go
all: build
build:
${GOBUILDCMD} ${GOOPTIONS} ${SRCFILES}
clean:
${RMCMD} -f ${BINNAME}