dumb/Makefile

13 lines
431 B
Makefile
Raw Normal View History

2024-03-05 19:47:02 +01:00
VERSION=`git rev-parse --short HEAD`
gentempl:
command -v templ &> /dev/null || go install github.com/a-h/templ/cmd/templ@latest
esbuild:
[ ! -f ./esbuild ] && curl -fsSL https://esbuild.github.io/dl/latest | sh
build:gentempl esbuild
templ generate
cat ./style/*.css | ./esbuild --loader=css --minify > ./static/style.css
go build -ldflags="-X 'github.com/rramiachraf/dumb/data.Version=$(VERSION)' -s -w"
2024-03-06 12:01:04 +01:00
fmt:
templ fmt .