Skip to content
Snippets Groups Projects
Makefile 256 B
Newer Older
Taddeüs Kroes's avatar
Taddeüs Kroes committed
SCRIPTS := www/animate.js
Taddeüs Kroes's avatar
Taddeüs Kroes committed
STYLES := www/style.css

ALL := $(SCRIPTS) $(STYLES)

.PHONY: all min clean

all: $(ALL)

www/%.js: %.coffee
	coffee --compile --output $(@D) $<

www/%.css: %.sass
	sass $< $@

www/%.css: %.less
	lessc $< $@

clean:
	rm -f $(ALL)