dumb/Makefile

16 lines
196 B
Makefile
Raw Normal View History

CGO_ENABLED=1
2024-03-05 19:47:02 +01:00
all:
templ generate
cat ./style/*.css > ./static/style.css
CGO_ENABLED=$(CGO_ENABLED) go build
2024-03-06 20:53:29 +01:00
test:
go test ./... -v
format:
gofmt -s -w .
2024-03-06 12:01:04 +01:00
templ fmt .
.PHONY: test format