diff options
author | Thomas Park <thomas@thomaspark.me> | 2013-02-25 02:07:15 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2013-02-25 02:07:15 -0500 |
commit | d5ecc3e5c29821451eeba2fea01faa20af36bfdf (patch) | |
tree | 983f38cf98570c712644013aa7e8fd9fbfa6dcbe | |
parent | 349c923e647dca99f94632431572745a81e7e05a (diff) |
swatchmaker: added watcher and server to make file
-rwxr-xr-x | swatchmaker/Makefile | 8 |
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 |