go-data-access/Makefile
2024-06-14 23:02:39 -04:00

13 lines
192 B
Makefile

build: db.sqlite3
go build dbtest.go
run: db.sqlite3
go run dbtest.go
db.sqlite3: migrations/*.sql
cat migrations/*.sql | sqlite3 db.sqlite3
all: build db.sqlite3
.PHONY: all build run