Do not compile less files on development build
All checks were successful
the build was successful

Fixes #998
This commit is contained in:
2019-06-27 20:56:40 +02:00
parent ed929f80c0
commit cf78e55f58
2 changed files with 6 additions and 1 deletions

View File

@@ -10,6 +10,9 @@
.PHONY: all .FORCE
.FORCE:
# This will be overwritten in the command line running this Makefile.
build_env = development
# -----------------------------------------------------------------------------
# Update CSS files
# -----------------------------------------------------------------------------
@@ -17,10 +20,12 @@
# This step recompiles the less files into the final CSS files to be
# distributed to the web server.
ifneq ($(build_env),development)
all: look/fsfe.min.css look/valentine.min.css
look/%.min.css: $(shell find "look" -name '*.less')
echo "* Compiling $@"
lessc "look/$*.less" -x "$@"
endif
# -----------------------------------------------------------------------------
# Update XSL stylesheets