feat: add makefile

This commit is contained in:
Justin Lin
2025-08-26 21:05:19 +10:00
parent 7ced3985b1
commit 56e4a688ea

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
BINARY_NAME=sqlc-tutorial
MAIN=cmd/api/main.go
build:
go build -o ${BINARY_NAME} ${MAIN}
run:
go run ${MAIN}
test:
echo "Test is not defined"
clean:
go clean
rm ${BINARY_NAME}