diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2013-08-03 16:21:37 -0400 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2013-08-03 16:35:16 -0400 |
commit | d47fade7099b96fdabb3a5fd3d6196b9a66ce49e (patch) | |
tree | 687ac3a3af17007c71263c468e6b5bcd2bd9d6d7 /unrpyc/Makefile | |
parent | e3e9a0947a2b04348cc9b77aff054960485b4393 (diff) | |
download | html5ks-d47fade7099b96fdabb3a5fd3d6196b9a66ce49e.tar.xz html5ks-d47fade7099b96fdabb3a5fd3d6196b9a66ce49e.zip |
fix stuff
Diffstat (limited to 'unrpyc/Makefile')
-rw-r--r-- | unrpyc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unrpyc/Makefile b/unrpyc/Makefile index 0463da9..6e28df4 100644 --- a/unrpyc/Makefile +++ b/unrpyc/Makefile @@ -1,7 +1,7 @@ all: script.json.gz script.json.gz: script.json - gzip -c script.json > script.json.gz + gzip -9c script.json > script.json.gz touch script.json script.json.gz script.json: $(patsubst %.rpyc,%.json,$(wildcard *.rpyc)) @@ -16,7 +16,7 @@ script-%.json: script-%.json.o sed -i -e 's/^{//;s/}$$/,/' $@ clean: - rm -f *.json.o *.json + rm -f *.json.o *.json script.json.gz test: all jshint --show-non-errors *.json |