fix(mkfile): fix make sqlc

This commit is contained in:
Muyao CHEN 2024-10-12 18:31:18 +02:00
parent eee5084821
commit c312b4e2c8

View File

@ -37,6 +37,7 @@ build: tidy sqlc # build.
@go build -v -ldflags "$(GO_LDFLAGS)" -o $(OUTPUT_DIR)/howmuch $(ROOT_DIR)/cmd/howmuch/main.go 2>/dev/null
.PHONY: sqlc
sqlc:
@sqlc generate
.PHONY: format