forked from jeanbauer/d3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (33 loc) · 759 Bytes
/
Makefile
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
GENERATED_FILES = \
d3.js \
d3.min.js \
component.json \
package.js
all: $(GENERATED_FILES)
.PHONY: clean all test publish
test:
@npm test
src/start.js: package.json bin/start
bin/start > $@
d3.zip: LICENSE d3.js d3.min.js
zip $@ $^
d3.js: $(shell node_modules/.bin/smash --ignore-missing --list src/d3.js) package.json
@rm -f $@
node_modules/.bin/smash src/d3.js | node_modules/.bin/uglifyjs - -b indent-level=2 -o $@
@chmod a-w $@
d3.min.js: d3.js bin/uglify
@rm -f $@
bin/uglify $< > $@
%.json: bin/% package.json
@rm -f $@
bin/$* > $@
@chmod a-w $@
package.js: bin/meteor package.json
@rm -f $@
bin/meteor > package.js
@chmod a-w $@
publish:
npm publish
meteor publish && rm -- .versions
clean:
rm -f -- $(GENERATED_FILES)