HAML=			haml
COFFEE=			coffee
STYLUSCSS=		stylus

.SUFFIXES: .coffee .haml .stylus .html .js .less .css

all: arc_both.html arc_both.js style.css

.haml.html:
	$(HAML) --unix-newlines --no-escape-attrs --double-quote-attributes $*.haml > $*.html

.coffee.js:
	$(COFFEE) --compile --lint $*.coffee

.less.css:
	$(LESSCSS) $*.less $*.css

