🔨 Add gen command to Makefile

This commit is contained in:
makeworld 2021-04-13 16:45:44 -04:00
parent fe35f45e8c
commit d4c7e87838
1 changed files with 5 additions and 0 deletions

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 ./...