Files
snikket-web-portal/Makefile
Kim Alvefur 7a4b56914c Switch to sassc for CSS building
Because https://github.com/Kronuz/pyScss/pull/426 is not yet in a
release, also just look at the diffstat!
2023-08-02 22:35:32 +02:00

38 lines
1.2 KiB
Makefile

scss_files = $(filter-out snikket_web/scss/_%.scss,$(wildcard snikket_web/scss/*.scss))
scss_includes = $(filter snikket_web/scss/_%.scss,$(wildcard snikket_web/scss/*.scss))
generated_css_files = $(patsubst snikket_web/scss/%.scss,snikket_web/static/css/%.css,$(scss_files))
translation_basepath = snikket_web/translations
pot_file = $(translation_basepath)/messages.pot
PYTHON3 ?= python3
SCSSC ?= sassc --load-path snikket_web/scss/
all: build_css compile_translations
build_css: $(generated_css_files)
$(generated_css_files): snikket_web/static/css/%.css: snikket_web/scss/%.scss $(scss_files) $(scss_includes)
mkdir -p snikket_web/static/css/
$(SCSSC) "$<" "$@"
clean:
rm -f $(generated_css_files)
extract_translations:
pybabel extract -F babel.cfg -k _l -o $(pot_file) .
update_translations: extract_translations
@echo "This has been deprecated as translations are now managed by weblate."
@echo "Use extract_translations only."
@false
force_update_translations: extract_translations
pybabel update -i $(pot_file) -d $(translation_basepath)
compile_translations:
-pybabel compile -d $(translation_basepath)
.PHONY: build_css clean update_translations compile_translations extract_translations force_update_translations