summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2013-02-25 02:07:15 -0500
committerThomas Park <thomas@thomaspark.me>2013-02-25 02:07:15 -0500
commitd5ecc3e5c29821451eeba2fea01faa20af36bfdf (patch)
tree983f38cf98570c712644013aa7e8fd9fbfa6dcbe
parent349c923e647dca99f94632431572745a81e7e05a (diff)
swatchmaker: added watcher and server to make file
-rwxr-xr-xswatchmaker/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/swatchmaker/Makefile b/swatchmaker/Makefile
index 7a25da77..fe7f4bdb 100755
--- a/swatchmaker/Makefile
+++ b/swatchmaker/Makefile
@@ -24,5 +24,11 @@ default:
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:
+ python -m SimpleHTTPServer
+
+.PHONY: bootswatch bootstrap default watch server