From 4fa018f39ece7add8bb3be2361ba8ea2e52bc66c Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Thu, 16 Oct 2014 10:54:36 +0200 Subject: [PATCH] make -> ${MAKE}, part of MKWS-292 --- test/Makefile | 4 ++-- test/widgets/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Makefile b/test/Makefile index e4b204b..c7505a7 100644 --- a/test/Makefile +++ b/test/Makefile @@ -25,7 +25,7 @@ all: check clean: rm -f mkws-error.png mkws-error.html rm -f images/*.png - make -C./widgets $@ + ${MAKE} -C./widgets $@ distclean: clean clean-tmp clean-error rm -rf node_modules @@ -82,7 +82,7 @@ screenshot-indexdata: ls -l ${IMAGES} screenshots: - make -C ./widgets $@ + ${MAKE} -C ./widgets $@ jsbeautifier jsb indent: for i in package.json ./spec*/*.js ./js/*.js ./phantom/*.js; do \ diff --git a/test/widgets/Makefile b/test/widgets/Makefile index dbd9bbf..39c8fda 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -32,7 +32,7 @@ screenshots: clean for i in $$(cat url.txt); do \ make PHANTOMJS_URL="$$i" TIMEOUT=4 screenshot; \ done; wait - make index + ${MAKE} index index: cd ${IMAGES}; ls -tr *.png | perl -ne 'chomp; print qq{

$$_



\n}' > index.html -- 1.7.10.4