
index.html: local.html webCDcreator.jar swing.jar
	cat local.html | sed s/localhost/`hostname`/g > index.html

webCDcreator.jar:
	# webCDcreator.jar is missing
	# Go to the installation manual for compiling and signing webCDcreator
	# or download webCDwriter-*-signed.tgz
	exit 1

swing.jar:
	# swing.jar is missing
	# Get it from http://java.sun.com/jfc/
	# or download webCDwriter-*-signed.tgz
	exit 1

clean:
	rm -f *~ *.class .nfs* core .directory

maintainer-clean: clean
	rm -f index.html webCDcreator.jar swing.jar

