# Build notes:
#   You should really hae the most recent alpha release version of
#   the texinfo package. 
#   I got mine from: ftp://alpha.gnu.org/gnu/texinfo.tar.gz
#   I used version 3.1f

all :
	texi2dvi pickingUpPerl.texi
	dvips pickingUpPerl.dvi -o pickingUpPerl.ps
	makeinfo --no-split pickingUpPerl.texi
	makeinfo --html --footnote-style=end pickingUpPerl.texi
	texi2pdf pickingUpPerl.texi
#	texi2html pickingUpPerl.texi

clean :
	@-rm -f *.dvi *.ky *.log  *.tp *.cp *.fn *.vr *.aux *.toc *.vrs *.cps *.fn *.fns *.cps *.pg x.ps
	@-rm -f pickingUpPerl.info* pickingUpPerl_toc.html pickingUpPerl_foot.html pickingUpPerl.html pickingUpPerl.ps pickingUpPerl.pdf

distclean : clean
	@-rm -f *~ #*#
