summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornytpu <alex@nytpu.com>2021-05-11 11:19:37 -0600
committernytpu <alex@nytpu.com>2021-05-11 11:23:28 -0600
commit5aa80302af2aa31b63c51f5e020b8464ab635ff2 (patch)
treeb741b6b54a68881508a15b0fca70371508260ad6 /Makefile
parent4d23da8c389d210c5d067fdbcb28d6875797e9e6 (diff)
add localization generation and add to build system
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2eb2cd5..bf4b844 100644
--- a/Makefile
+++ b/Makefile
@@ -46,6 +46,7 @@ $(BUILDDIR):
$(BUILDDIR)/$(NAME): $(GOSRC) | $(BUILDDIR)
+ $(GO) generate ./...
$(GO) build $(GOFLAGS) -ldflags "$(GOLDFLAGS)" -o $@
@@ -55,6 +56,7 @@ $(BUILDDIR)/%.1: doc/%.1.scd | $(BUILDDIR)
clean:
-$(RM) -r $(BUILDDIR)
+ -$(RM) -r localizations
install: all