aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2025-08-14 18:07:12 +0100
committerLeonardo Bishop <me@leonardobishop.com>2025-08-14 18:07:12 +0100
commit4697556cac819c47d068819b9fc9c3b4ea84e279 (patch)
treeb832d8fc6b643a8b9d0eeca35c1268e1649da731 /Makefile
parentdd49c9205bb04844b686b9c3396c40eb49d25826 (diff)
Merge confplanner-web and replace fiber with native net/http
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..32f4e10
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+BINARY_NAME=confplanner
+
+all: build
+
+.PHONY: build
+build: web
+ go build -o ${BINARY_NAME} main.go
+
+.PHONY: web
+web:
+ (cd web && go generate)
+
+.PHONY: sqlc
+sqlc:
+ sqlc compile