diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2013-11-26 19:31:12 -0500 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2013-11-26 19:31:12 -0500 |
commit | 9d86b215eb990ca52af89c94776dae24f4463e46 (patch) | |
tree | b698cc173349883d2735e4154e392a4898b53d61 /unrpyc | |
parent | fb3d7df90cbfa8ed6e6fcde64404907b62928c0c (diff) | |
download | html5ks-9d86b215eb990ca52af89c94776dae24f4463e46.tar.xz html5ks-9d86b215eb990ca52af89c94776dae24f4463e46.zip |
Stuff.
Diffstat (limited to 'unrpyc')
-rw-r--r-- | unrpyc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unrpyc/Makefile b/unrpyc/Makefile index 431e10b..a92a91d 100644 --- a/unrpyc/Makefile +++ b/unrpyc/Makefile @@ -1,9 +1,9 @@ -gzip := $(shell ./find-gzip.sh) +GZIP := $(shell ./find-gzip.sh) all: script.json script.json.gz imachine.json imachine.json.gz imachine_replay.json imachine_replay.json.gz ui-strings.json ui-strings.json.gz %.json.gz: %.json - $(gzip) -c $< > $@ + $(GZIP) -c $< > $@ touch $< $@ script.json: $(patsubst %.rpyc,%.json,$(wildcard script-*.rpyc)) |