From: Thomas Park Date: Sun, 10 Feb 2013 00:05:33 +0000 (-0500) Subject: swatchmaker: use output path variable for make default X-Git-Tag: v2.3.0+1~13 X-Git-Url: http://git.roojs.org/?p=bootswatch;a=commitdiff_plain;h=63ce54c8daae8f86ac09b4d0108ce500d2ce6501 swatchmaker: use output path variable for make default --- diff --git a/swatchmaker/Makefile b/swatchmaker/Makefile index a5af077..7a25da7 100755 --- a/swatchmaker/Makefile +++ b/swatchmaker/Makefile @@ -18,10 +18,10 @@ bootstrap: rm latest_bootstrap.tar.gz default: - -test -f swatch/variables.less && rm swatch/variables.less - -test -f swatch/bootswatch.less && rm swatch/bootswatch.less - curl --location -o swatch/variables.less https://raw.github.com/twitter/bootstrap/master/less/variables.less - curl --location -o swatch/bootswatch.less https://raw.github.com/thomaspark/bootswatch/gh-pages/swatchmaker/swatch/bootswatch.less + -test -f ${OUTPUT_PATH}/variables.less && rm ${OUTPUT_PATH}/variables.less + -test -f ${OUTPUT_PATH}/bootswatch.less && rm ${OUTPUT_PATH}/bootswatch.less + curl --location -o ${OUTPUT_PATH}/variables.less https://raw.github.com/twitter/bootstrap/master/less/variables.less + curl --location -o ${OUTPUT_PATH}/bootswatch.less https://raw.github.com/thomaspark/bootswatch/gh-pages/swatchmaker/swatch/bootswatch.less make bootswatch .PHONY: bootswatch bootstrap default