summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2013-02-09 19:05:33 -0500
committerThomas Park <thomas@thomaspark.me>2013-02-09 19:05:33 -0500
commit63ce54c8daae8f86ac09b4d0108ce500d2ce6501 (patch)
tree8d9893862f31c5261534c1cedcaf2c45a58a44a9
parent726cd35bd994f01bbee0f3ed316324680ba69df6 (diff)
swatchmaker: use output path variable for make default
-rwxr-xr-xswatchmaker/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/swatchmaker/Makefile b/swatchmaker/Makefile
index a5af0778..7a25da77 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