add make file

This commit is contained in:
kingecg 2023-12-10 20:16:07 +08:00
parent 703a7e12ee
commit a0da5498a9
1 changed files with 9 additions and 0 deletions

9
Makefile Normal file
View File

@ -0,0 +1,9 @@
BINARY_NAME=gohttpd
all:build
build:
go build -o ${BINARY_NAME}
clean:
go clean