hy/site/coffee/Makefile

19 lines
184 B
Makefile
Raw Normal View History

2013-03-10 20:17:16 +01:00
.SUFFIXES:
.SUFFIXES: .coffee .js
COFFEE_SCRIPTS = main.js
all: build
build: $(COFFEE_SCRIPTS)
.coffee.js:
coffee -c $<
uglifyjs --no-copyright --overwrite $@
.PHONY: build