summaryrefslogtreecommitdiffstats
path: root/coffee/Makefile
blob: 8ca06f0686f1f1054d3d722f854b6872f40463ea (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)/grunt.coffee run

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

clean:
        rm -rf $(CURDIR)/build