source: Dev/trunk/node_modules/grunt-path-check/sample/Makefile @ 532

Last change on this file since 532 was 516, checked in by hendrikvanantwerpen, 11 years ago

Enable deployment with Grunt.

File size: 261 bytes
Line 
1
2NPM   = npm
3GRUNT = ./node_modules/grunt-cli/bin/grunt
4
5all: build
6
7bootstrap:
8        @if [ ! -x $(GRUNT) ]; then $(NPM) install; fi
9
10build: bootstrap
11        @$(GRUNT)
12
13clean: bootstrap
14        @$(GRUNT) clean:clean
15
16distclean: bootstrap
17        @$(GRUNT) clean:clean clean:distclean
18
Note: See TracBrowser for help on using the repository browser.