Fixes #998
This commit is contained in:
5
Makefile
5
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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user