From 63ce54c8daae8f86ac09b4d0108ce500d2ce6501 Mon Sep 17 00:00:00 2001 From: Thomas Park Date: Sat, 9 Feb 2013 19:05:33 -0500 Subject: [PATCH] swatchmaker: use output path variable for make default --- swatchmaker/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.39.2