UNPKG

394 BPlain TextView Raw
1##
2## GemstoneJS -- Gemstone JavaScript Technology Stack
3## Copyright (c) 2016-2018 Gemstone Project <http://gemstonejs.com>
4## Licensed under Apache License 2.0 <https://spdx.org/licenses/Apache-2.0>
5##
6
7NPM = npm
8
9all: build
10
11bootstrap:
12 @if [ ! -d node_modules ]; then $(NPM) install; fi
13
14build: bootstrap
15 @$(NPM) run grunt
16
17clean: bootstrap
18
19distclean: bootstrap
20 -rm -rf node_modules
21