swatchmaker: update makefile
[bootswatch] / swatchmaker / Makefile
index d3f1f91..7eda3f8 100755 (executable)
@@ -5,24 +5,31 @@
 OUTPUT_PATH = swatch
 
 bootswatch:
-       lessc swatchmaker.less > ${OUTPUT_PATH}/bootstrap.css
-       lessc --compress  swatchmaker.less > ${OUTPUT_PATH}/bootstrap.min.css
-       lessc swatchmaker-responsive.less > ${OUTPUT_PATH}/bootstrap-responsive.css
-       lessc --compress  swatchmaker-responsive.less > ${OUTPUT_PATH}/bootstrap-responsive.min.css
+       recess --compile swatchmaker.less > ${OUTPUT_PATH}/bootstrap.css
+       recess --compress swatchmaker.less > ${OUTPUT_PATH}/bootstrap.min.css
+       recess --compile swatchmaker-responsive.less > ${OUTPUT_PATH}/bootstrap-responsive.css
+       recess --compress swatchmaker-responsive.less > ${OUTPUT_PATH}/bootstrap-responsive.min.css
 
 bootstrap:
        -test -d bootstrap && rm -r bootstrap
        curl --location -o latest_bootstrap.tar.gz https://github.com/twitter/bootstrap/tarball/master
        tar -xvzf latest_bootstrap.tar.gz
-       mv twitter-bootstrap* bootstrap
+       mv twbs-bootstrap* 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
+watcher:
+       ruby watcher.rb
+
+server:
+       open http://localhost:8000/test/test.html
+       python -m SimpleHTTPServer
+
+.PHONY: bootswatch bootstrap default watcher server