1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-19 19:25:24 +00:00

🔨 Add gen command to Makefile

This commit is contained in:
makeworld 2021-04-13 16:45:44 -04:00
parent fe35f45e8c
commit d4c7e87838

View File

@ -32,6 +32,11 @@ uninstall:
$(RM) -f $(PREFIX)/share/applications/amfora.desktop
# Development helpers
.PHONY: fmt
fmt:
$(GO) fmt ./...
.PHONY: gen
gen:
$(GO) generate ./...