You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oidc-idp/Makefile

26 lines
519 B
Makefile

GOFILES = $(wildcard */*.go)
TEMPLATES = $(wildcard templates/*.gohtml)
TRANSLATIONS = $(wildcard active.*.toml)
all: cacert-idp
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
cacert-idp: go.sum $(GOFILES) $(TEMPLATES) translations
go build -o $@ ./cmd/idp.go
clean:
rm -f cacert-idp
.PHONY: all translations clean