# Copyright World Wide Web Consortium, (Massachusetts Institute of
# Technology, Institut National de Recherche en Informatique et en
# Automatique, Keio University).
#
# All Rights Reserved.
#
# Please see the full Copyright clause at
# <http://www.w3.org/Consortium/Legal/copyright-software.html>
#
# $Id$
# 
#####################################################################

FILES = Makefile \
	amp-in-url \
	rdf-containers-syntax-vs-schema \
	rdf-ns-prefix-confusion \
	rdfms-difference-between-ID-and-about \
	rdfms-empty-property-elements

ARCHIVE_NAME = RDF-Test-Cases-2001-09-12

#	find . -name $(FILES) -print | grep -v CVS | grep -v '.zip' | zip $(ARCHIVE_NAME).zip -@

all: 
	rm -f $(ARCHIVE_NAME).zip
	zip -r $(ARCHIVE_NAME) $(FILES) 

clean:
	rm -f $(ARCHIVE_NAME).zip

