phoenix/Makefile

16 lines
384 B
Makefile
Raw Permalink Normal View History

2024-03-25 16:09:55 +05:00
all: fmt test
2023-04-09 10:42:34 +05:00
fmt:
2023-07-21 00:54:03 +05:00
gofmt -s -w .
2023-04-09 10:42:34 +05:00
2024-03-25 16:09:55 +05:00
test:
go test ./...
run:
go run .
2023-11-02 21:45:39 +05:00
favicons:
convert -background none assets/favicons/favicon.svg -resize 16x16 assets/favicons/favicon-16.png
convert -background none assets/favicons/favicon.svg -resize 32x32 assets/favicons/favicon-32.png
convert -background none assets/favicons/favicon.svg -resize 180x180 assets/favicons/favicon-180.png