From: <gu...@us...> - 2004-01-13 19:28:06
|
Update of /cvsroot/stud/stud/docs In directory sc8-pr-cvs1:/tmp/cvs-serv30821 Modified Files: Makefile Log Message: Added some requirement text and made printouts more verbose Index: Makefile =================================================================== RCS file: /cvsroot/stud/stud/docs/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile 1 Apr 2002 13:35:04 -0000 1.3 --- Makefile 13 Jan 2004 19:28:03 -0000 1.4 *************** *** 35,38 **** --- 35,40 ---- help: @echo "The following formats are supported by this Makefile:" + @echo "All format reqire that texinfo is installed since that" + @echo "is what the documentation is written in:" @echo @echo " make dvi" *************** *** 68,91 **** $(DVI): $(SRC) @texi2dvi -c -b $< > /dev/null 2>&1 - @echo $@ $(HTML): $(SRC) @texi2html $< > /dev/null 2>&1 - @echo $@ $(INFO): $(SRC) @makeinfo $< 2>&1 - @echo $@ $(PS): $(DVI) @dvips $< -o > /dev/null 2>&1 - @echo $@ $(PDF): $(PS) @ps2pdf $< > /dev/null 2>&1 - @echo $@ $(TEXT): $(SRC) @makeinfo --no-headers $< -o $@ 2>&1 - @echo $@ --- 70,93 ---- $(DVI): $(SRC) + @echo Making $@ @texi2dvi -c -b $< > /dev/null 2>&1 $(HTML): $(SRC) + @echo Making $@ @texi2html $< > /dev/null 2>&1 $(INFO): $(SRC) + @echo Making $@ @makeinfo $< 2>&1 $(PS): $(DVI) + @echo Making $@ @dvips $< -o > /dev/null 2>&1 $(PDF): $(PS) + @echo Making $@ @ps2pdf $< > /dev/null 2>&1 $(TEXT): $(SRC) + @echo Making $@ @makeinfo --no-headers $< -o $@ 2>&1 |