diff --git a/Makefile b/Makefile index eaeae300e6..f2f4f0f168 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/build/buildrun.sh b/build/buildrun.sh index 436b85b7e9..77e6430cac 100755 --- a/build/buildrun.sh +++ b/build/buildrun.sh @@ -20,7 +20,7 @@ build_into(){ { echo "Starting phase 1" \ - && make --silent --directory="$basedir" 2>&1 \ + && make --silent --directory="$basedir" build_env="${build_env:-development}" 2>&1 \ && echo "Finishing phase 1" \ || die "Error during phase 1" } | t_logstatus phase_1 || exit 1