From 0d4abb29d9074aef93b6292684feafca8d8ecb3c Mon Sep 17 00:00:00 2001 From: Jany Belluz Date: Wed, 16 Apr 2014 21:33:09 +0200 Subject: [PATCH] Generate tar archives to please GitHub --- .gitignore | 1 + Makefile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index af7cc79..b0bad61 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ TeX *.zip +*.tar.gz *.deb *.rpm *~ diff --git a/Makefile b/Makefile index ff5ab08..4594977 100644 --- a/Makefile +++ b/Makefile @@ -37,9 +37,12 @@ zips: zip-mono zip-prop zip-mono: $(TTF_FILES) $(OTF_FILES) $(SVG_FILES) $(EOT_FILES) $(WOFF_FILES) $(SOURCES) $(CSS_FILE) zip FantasqueSansMono.zip OFL.txt README.md Webfonts/README.md $(CSS_FILE) $(foreach v,$^,$(if $(findstring Mono,$v),$v)) + tar czvf FantasqueSansMono.tar.gz OFL.txt README.md Webfonts/README.md $(CSS_FILE) $(foreach v,$^,$(if $(findstring Mono,$v),$v)) + zip-prop: $(TTF_FILES) $(OTF_FILES) $(SVG_FILES) $(EOT_FILES) $(WOFF_FILES) $(SOURCES) zip FantasqueSans.zip OFL.txt README.md Webfonts/README.md $(foreach v,$^,$(if $(findstring Mono,$v),,$v)) + tar czvf FantasqueSans.zip OFL.txt README.md Webfonts/README.md $(foreach v,$^,$(if $(findstring Mono,$v),,$v)) clean: rm -f *.ttf *.zip OTF/* Webfonts/*.eot Webfonts/*.woff Webfonts/*.svg Webfonts/*.css