
include ../../config

all: swing.jar

swing.jar:
	@echo
	@echo "swing.jar is missing"
	@echo "Get it from http://java.sun.com/jfc/"
	@echo "or download webCDwriter-<version>-signed.tgz"
	@echo
	exit 1

webCDcreator.jar:
	@echo
	@echo "webCDcreator.jar is missing"
	@echo "You can get it from webCDwriter-<version>-signed.tgz"
	@echo
	exit 1

install: all
	install -d -m 755 ${INSTDIR}/
	$(INSTALL) -m 644 *.jar ${INSTDIR}/

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

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