JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
rename style.css -> css.css
[crayon_mockup.git] / Makefile
index cc4e070..0ae83b6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,12 @@
-objects= auto.js
+objects= main.js css.css
 
 all: $(objects)
 
 clean:
        rm -f $(objects)
 
+css.css: style.styl
+       stylus -c -p $< > $@
+
 %.js: %.coffee
        coffee -c $<