diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 15 |
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 |
