From 69890d17a01426cf7de8b6aa1dc64b56dfb7449d Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Thu, 6 Mar 2014 17:02:37 -0500 Subject: meh --- unrpyc/Makefile | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 unrpyc/Makefile (limited to 'unrpyc/Makefile') diff --git a/unrpyc/Makefile b/unrpyc/Makefile deleted file mode 100644 index 3259d12..0000000 --- a/unrpyc/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -GZIP := $(shell ./find-gzip.sh) - -JSON := script.json script.json.gz imachine.json imachine.json.gz ui-strings.json ui-strings.json.gz ui-strings_FR.json ui-strings_FR.json.gz - -all: $(JSON) - -%.json.gz: %.json - $(GZIP) -c $< > $@ - touch $< $@ - -script.json: $(patsubst %.rpyc,%.json,$(wildcard script-*.rpyc)) - cat script-*.json > script.json - sed -i -e 's/^/{/;s/,$$/}/' script.json - -%.json: %.json.o - uglifyjs $< --expr > $@ - -ui-strings.json.o ui-strings_FR.json.o: ui-strings%.json.o: ui-strings%.rpyc *.py - python3 unrpyc.py --clobber $< $@ - sed -i -e 's/ \["init_language", "[a-z]*", \],//;s/^\]}$$/}/' $@ - -ui_settings.json.o: ui_settings.rpyc *.py - python3 unrpyc.py --clobber $< --ignore-python $@ - sed -i -e 's/,,/,/g;/: *,$$/d' $@ - -%.json.o: %.rpyc *.py - python3 unrpyc.py --clobber $< $@ - -script-%.json: script-%.json.o - uglifyjs $< --expr > $@ - sed -i -e 's/^{//;s/}$$/,/' $@ - -clean: - $(RM) *.json* - -test: all - jshint --show-non-errors *.json - -install: all - [ -d ../www/json ] || mkdir ../www/json - cp -f $(JSON) ../www/json - -uninstall: - $(RM) ../www/json/* - -.PHONY: all clean test install -- cgit v1.2.3-54-g00ecf