diff --git a/Makefile b/Makefile index a4a29d3b18..eaeae300e6 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,18 @@ .PHONY: all .FORCE .FORCE: +# ----------------------------------------------------------------------------- +# Update CSS files +# ----------------------------------------------------------------------------- + +# This step recompiles the less files into the final CSS files to be +# distributed to the web server. + +all: look/fsfe.min.css look/valentine.min.css +look/%.min.css: $(shell find "look" -name '*.less') + echo "* Compiling $@" + lessc "look/$*.less" -x "$@" + # ----------------------------------------------------------------------------- # Update XSL stylesheets # -----------------------------------------------------------------------------