mirror of
https://github.com/1f349/lavender.git
synced 2025-01-21 06:06:30 +00:00
16 lines
241 B
Makefile
16 lines
241 B
Makefile
SQL_SRC_DIR := database
|
|
SQL_FILES := $(wildcard $(SQL_SRC_DIR)/{migrations,queries}/*.sql)
|
|
|
|
.PHONY: all sqlc astro build
|
|
|
|
all: sqlc astro
|
|
|
|
sqlc: $(SQL_FILES)
|
|
sqlc generate
|
|
|
|
astro:
|
|
cd web && yarn build
|
|
|
|
build: sqlc
|
|
go build ./cmd/lavender
|