gohttp/Makefile

11 lines
130 B
Makefile

BINARY_NAME=target/gohttpd
all:build
build:
go build -o ${BINARY_NAME}
cp config.json target/
clean:
go clean
rm -rf target