24 lines
512 B
Makefile
24 lines
512 B
Makefile
GOFILES = $(wildcard */*.go)
|
|
TEMPLATES = $(wildcard templates/*.gohtml)
|
|
TRANSLATIONS = $(wildcard active.*.toml)
|
|
|
|
all: demo-app
|
|
|
|
go.sum: go.mod
|
|
go mod tidy
|
|
|
|
translations: $(TRANSLATIONS) $(GOFILES)
|
|
goi18n extract .
|
|
goi18n merge active.*.toml
|
|
if translate.*.toml 2>/dev/null; then \
|
|
echo "missing translations"; \
|
|
goi18n merge active.*.toml translate.*.toml; \
|
|
fi
|
|
|
|
demo-app: go.sum $(GOFILES) $(TEMPLATES) translations
|
|
go build -o $@ ./cmd/app.go
|
|
|
|
clean:
|
|
rm -f demo-app
|
|
|
|
.PHONY: all translations clean
|