
FOO=a  b  
t:: 
	echo X$(FOO)X

all:: doxygen.out

doxygen.out::
        #  todo: only call doxygen when an input file has changed...?
	rm -rf doxygen.out
	#sed "s/20.*Z/`date -u +%Y-%m-%dT%H:%M:%SZ`/" < doxygen.header > tmp
	#cp tmp doxygen.header
	doxygen doxygen.conf

pub: doxygen.out
#
#  should put stuff in date -u +%Y-%m-%dT%H:%M:%SZ
#  and change all the current stuff to
#      SPAN.status { color: #000; background: #fdd; border: 4px solid black; padding: 3px; float:left }
# and text to
#        Status: Superceded.   See <a href="">version table</a>.   
# 
	CVSROOT=cvs.w3.org:/w3ccvs ../make/publish doxygen.out/html WWW/2001/06/blindfold/api "latest output from documentation generator"
	echo 'Be sure to check http://www.w3.org/2001/06/blindfold/api/*,access*'
	echo 'And try out:'
	echo '     http://www.w3.org/2001/06/blindfold/api/index.html'

nsopen: doxygen.out
	netscape -remote "openFile(`pwd`/doxygen.out/html/index.html)"

v:	doxygen.out
	nso doxygen.out/html/index.html

clean::
	rm -rf doxygen.out
