# This file is in the public domain. include build-system/config.mk # List of all supported languages, add new languages here! LANGUAGES="en" # All: build HTML pages in all languages and compile the # TypeScript logic in web-common. .PHONY: all all: locale template (cd web-common && $(tsc)) (for lang in `echo $(LANGUAGES)` ; do \ $(cp) -R web-common/*.css web-common/*.ico rendered/static/ ; \ done) # Extract translateable strings from jinja2 templates. locale/messages.pot: template/*.j2 $(python) inc/mybabel.py $(pybabel) extract -F locale/babel.map -o locale/messages.pot . # Update translation (.po) files with new strings. .PHONY: locale-update locale-update: locale/messages.pot (for lang in `echo $(LANGUAGES)`; do \ $(msgmerge) -q -U -m --previous locale/$$lang/LC_MESSAGES/messages.po locale/messages.pot ; \ done) if $(grep) -nA1 '#-#-#-#-#' locale/*/LC_MESSAGES/messages.po; then $(echo) -e "\nERROR: Conflicts encountered in PO files.\n"; exit 1; fi # Compile translation files for use. .PHONY: locale-compile locale-compile: (for lang in `echo $(LANGUAGES)`; do \ $(pybabel) -q compile -d locale -l $$lang --use-fuzzy ; \ done) # Process everything related to gettext translations. .PHONY: locale locale: locale-update locale-compile # Run the jinja2 templating engine to expand templates to HTML # incorporating translations. template: locale-compile $(python) ./make_site.py .PHONY: run run: all $(browser) http://0.0.0.0:8000/rendered/en & $(python) -m http.server ifndef variant $(error variant is not set) endif .PHONY: install install: all $(mkdir) -p $(prefix)/$(variant) $(cp) -r rendered/* $(prefix)/$(variant)/ .PHONY: uninstall uninstall: $(rm) -rf $(prefix)/$(variant) .PHONY: clean clean: $(rm) -rf __pycache__ *.pyc *~ \.*~ \#*\# $(rm) -rf rendered/ submodules/update: $(git) submodule update --recursive --remote