From ecb1a7697497afbd31e01de0c10e2ef39eb46167 Mon Sep 17 00:00:00 2001 From: Mark Borgerding Date: Sun, 26 Oct 2003 04:25:18 +0000 Subject: [PATCH] added zip creation to tarball make target --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4ac4a33..aacff98 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,10 @@ message: @echo "Nothing to make here. Move on down to sample_code for ... you guessed it! Sample Code!" tarball: clean - tar --exclude CVS --exclude .cvsignore -cvzf kiss_fft.tar.gz . + find | grep -i -v cvs | zip kiss_fft.zip -@ + tar --exclude CVS --exclude .cvsignore --exclude kiss_fft.zip -cvzf kiss_fft.tar.gz . clean: cd sample_code && make clean - rm -f kiss_fft.tar.gz *~ *.pyc + rm -f kiss_fft.tar.gz *~ *.pyc kiss_fft.zip