blob: c79c5bdf7c8cbc169eb25ef6180928987bd37917 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
ifeq ($(NPM),)
NPM = npm
endif
all: npminstall
$(NPM) run build
dist: npminstall
$(NPM) run dist
install:
distclean clean: npminstall
$(NPM) run clean
lint: npminstall
$(NPM) run lint
test:
@python ./allTests.py
npminstall:
$(NPM) install --no-optional
|