We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78dc3df commit e73744dCopy full SHA for e73744d
Makefile
@@ -1,9 +1,12 @@
1
-all:
+all: gzip
2
git archive --format=tar version-`cat quicklisp/version.txt` quicklisp/ > quicklisp.tar
3
- gzip -c quicklisp.tar > quicklisp.tar.gz
+ gzip -fnk9 quicklisp.tar
4
+
5
+gzip:
6
+ gzip -fnk9 setup.lisp asdf.lisp
7
8
clean:
- rm -f quicklisp.tar quicklisp.tar.gz
9
+ rm -f quicklisp.tar quicklisp.tar.gz setup.lisp.gz asdf.lisp.gz
10
11
tag:
12
test -z "`git status -s quicklisp/ asdf.lisp setup.lisp`"
0 commit comments