adradius/Makefile

19 lines
242 B
Makefile
Raw Normal View History

2020-03-02 23:25:37 +01:00
# adradius Makefile
GOCMD=go
GOBUILDCMD=${GOCMD} build
GOOPTIONS=-mod=vendor -ldflags="-s -w"
RMCMD=rm
BINNAME=adradius
SRCFILES=cmd/adradius/*.go
all: build
build:
${GOBUILDCMD} ${GOOPTIONS} ${SRCFILES}
clean:
${RMCMD} -f ${BINNAME}