gohttp/Makefile

11 lines
130 B
Makefile
Raw Normal View History

2023-12-10 20:49:38 +08:00
BINARY_NAME=target/gohttpd
2023-12-10 20:16:07 +08:00
all:build
build:
go build -o ${BINARY_NAME}
2023-12-10 20:49:38 +08:00
cp config.json target/
2023-12-10 20:16:07 +08:00
clean:
2023-12-10 20:49:38 +08:00
go clean
rm -rf target