12 lines
163 B
Makefile
12 lines
163 B
Makefile
dist: all
|
|
@echo Done
|
|
|
|
all:
|
|
@echo Compiling coffee script
|
|
coffee -c *.coffee
|
|
|
|
watch:
|
|
@echo Watch coffee script files
|
|
coffee -w *.coffee
|
|
|
|
.PHONY: dist all watch |