summaryrefslogtreecommitdiffstats
path: root/coffee/Makefile
blob: 68ea18599539290aa3b64692d00a9884ec9f216f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: watch


deps:
	cd $(CURDIR)
	npm install --save-dev

watch: compile
	$(CURDIR)/node_modules/.bin/grunt --config $(CURDIR)/Gruntfile.coffee run

compile:
	mkdir -p $(CURDIR)/build
	$(CURDIR)/node_modules/.bin/grunt --config $(CURDIR)/Gruntfile.coffee compile

clean:
	rm -rf $(CURDIR)/build