# Adapt to your installation.

INSTALL = $(shell pwd)

all:	
	test -x bin || mkdir bin
	javac -d bin/ src/ccvisu/*.java
	cp src/ccvisu/*.java bin/ccvisu; \
	jar cfm bin/CCVisu.jar myManifest.txt -C bin/ ccvisu; \
	rm bin/ccvisu/*.java
	@echo Type \'make setup\' as the next step in order to generate \'setup.sh\'.

setup:	
	@echo setenv PATH '"${PATH}:${INSTALL}"' > setup.sh
	@echo setenv CLASSPATH '"${CLASSPATH}:${INSTALL}/bin"' >> setup.sh
	@echo Wrote file \'setup.sh\'.  Adapt it to your shell, after this,
	@echo please type \'source setup.sh\' to actually set the env. variables.

doc:	
	javadoc -d doc/ -sourcepath src/ -private -use -version -author ccvisu
