source:
Dev/trunk/node_modules/grunt-path-check/sample/Makefile
Last change on this file was 516, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 261 bytes |
Rev | Line | |
---|---|---|
[516] | 1 | |
2 | NPM = npm | |
3 | GRUNT = ./node_modules/grunt-cli/bin/grunt | |
4 | ||
5 | all: build | |
6 | ||
7 | bootstrap: | |
8 | @if [ ! -x $(GRUNT) ]; then $(NPM) install; fi | |
9 | ||
10 | build: bootstrap | |
11 | @$(GRUNT) | |
12 | ||
13 | clean: bootstrap | |
14 | @$(GRUNT) clean:clean | |
15 | ||
16 | distclean: bootstrap | |
17 | @$(GRUNT) clean:clean clean:distclean | |
18 |
Note: See TracBrowser
for help on using the repository browser.