You've already forked snikket-web-portal
Because https://github.com/Kronuz/pyScss/pull/426 is not yet in a release, also just look at the diffstat!
38 lines
1.2 KiB
Makefile
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
|