all : file.tar.gz file.zip

file.tar.gz :
	cd .. ; \
	tar cf - --exclude book-data/Makefile --exclude book-data/.htaccess --exclude book-data/file.zip book-data | gzip -9 > file.tar.gz ; \
	mv file.tar.gz book-data

file.zip :
	cd .. ; \
	zip -r file book-data -x book-data/Makefile book-data/.htaccess book-data/file.tar.gz ; \
	mv file.zip book-data

clean :
	rm file.tar.gz file.zip
