X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2FMakefile;h=0a01cc3ac8a26e27d0e94b895409716adb73d3dc;hb=691ef658b6d650327b82abf2a346336b176736e9;hp=8a4d80e8a26e08b1fac2180c5b53cbcdfc7f80dc;hpb=615bf3b3d2a8573ed6fb9ddc0055745e163ac999;p=pintos-anon diff --git a/doc/Makefile b/doc/Makefile index 8a4d80e..0a01cc3 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,8 +1,9 @@ -TEXIS = pintos.texi intro.texi tour.texi threads.texi userprog.texi \ -vm.texi filesys.texi references.texi standards.texi doc.texi \ -sample.tmpl devel.texi debug.texi 44bsd.texi +TEXIS = pintos.texi intro.texi threads.texi userprog.texi vm.texi \ +filesys.texi license.texi reference.texi 44bsd.texi standards.texi \ +doc.texi sample.tmpl.texi devel.texi debug.texi installation.texi \ +bibliography.texi localsettings.texi -all: pintos.html pintos.info pintos.dvi pintos.ps pintos.pdf +all: pintos.html pintos.info pintos.pdf pintos.html: $(TEXIS) texi2html ./texi2html -toc_file=$@ -split=chapter -nosec_nav -nomenu -init_file pintos-t2h.init $< @@ -10,6 +11,9 @@ pintos.html: $(TEXIS) texi2html pintos.info: $(TEXIS) makeinfo $< +pintos.text: $(TEXIS) + makeinfo --plaintext -o $@ $< + pintos.dvi: $(TEXIS) texi2dvi $< -o $@ @@ -17,24 +21,19 @@ pintos.ps: pintos.dvi dvips $< -o $@ pintos.pdf: $(TEXIS) - texi2pdf $< -o $@ - -%.eps: %.jgr - (jgraph $< > $@.tmp && mv $@.tmp $@) || touch $@ - -%.png: %.eps - convert $< $@ + pdftex $< -o $@ -%.pdf: %.eps - epstopdf $< --outfile=$@ +%.texi: % + sed < $< > $@ 's/\([{}@]\)/\@\1/g;' clean: - rm -f *.info *.html *.png + rm -f *.info* *.html rm -f *.dvi *.pdf *.ps *.log *~ rm -rf WWW + rm -f sample.tmpl.texi dist: pintos.html pintos.pdf rm -rf WWW mkdir WWW WWW/specs - cp *.html *.png *.pdf *.css WWW + cp *.html *.pdf *.css *.tmpl WWW (cd ../specs && cp -r *.pdf freevga kbd sysv-abi-update.html ../doc/WWW/specs)