From 56e4a688ea021a0aecd99f7139b57646ba157709 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Tue, 26 Aug 2025 21:05:19 +1000 Subject: [PATCH] feat: add makefile --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6fb7067 --- /dev/null +++ b/Makefile @@ -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}