Skip to content

Commit 62ee4a4

Browse files
authored
Update Makefile
1 parent b58b5b0 commit 62ee4a4

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

Makefile

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
all: build examples
22

3-
build: bower_components
4-
pulp build
3+
build: bower_components node_modules
4+
npx pulp build
55

6-
examples: bower_components
6+
examples: bower_components node_modules
77
find examples -maxdepth 2 -type f -iname makefile -execdir make \;
88

9-
bower_components:
10-
bower install
9+
bower_components: node_modules
10+
npx bower --allow-root install
11+
12+
node_modules:
13+
npm i --no-save bower pulp
1114

1215
.PHONY: build examples

0 commit comments

Comments
 (0)