blob: d30347f6ba2f2ff6e1b85b7c475799d1c32ed320 (
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
28
29
30
31
32
33
|
all: script.json.gz imachine.json.gz
imachine.json.gz: imachine.json
%.json.gz: %.json
gzip -9c $< > $@
touch $< $@
script.json: $(patsubst %.rpyc,%.json,$(wildcard *.rpyc))
cat script-*.json > script.json
sed -i -e 's/^/{/;s/,$$/}/' script.json
%.json.o: %.rpyc *.py
python unrpyc.py --clobber $< $@
imachine.json: imachine.json.o
node fix.js $< $@
%.json: %.json.o
node fix.js $< $@
sed -i -e 's/^{//;s/}$$/,/' $@
clean:
rm -f *.json.o *.json *.gz
test: all
jshint --show-non-errors *.json
install: all
install -t ../www/scripts script.json script.json.gz
.PHONY: all clean test install
.PRECIOUS: imachine.json.o
|