From d4c7e87838d2ad2cc58d3b56995ee456a614e238 Mon Sep 17 00:00:00 2001 From: makeworld Date: Tue, 13 Apr 2021 16:45:44 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Add=20gen=20command=20to=20Makef?= =?UTF-8?q?ile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index b7d160f..6606467 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,11 @@ uninstall: $(RM) -f $(PREFIX)/share/applications/amfora.desktop # Development helpers + .PHONY: fmt fmt: $(GO) fmt ./... + +.PHONY: gen +gen: + $(GO) generate ./...