- added thread_foreach
[pintos-anon] / doc / Makefile
index 9e918bb93842d827108f101c2acbed56f07382e1..ed8bb234bfa95d51333abe10d515facc47b588b0 100644 (file)
@@ -1,40 +1,39 @@
-TEXIS = pintos.texi intro.texi tour.texi threads.texi mlfqs.texi       \
-userprog.texi vm.texi filesys.texi references.texi standards.texi      \
-doc.texi devel.texi debug.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
 
-pintos.html: $(TEXIS) mlfqs1.png mlfqs2.png
-       ./texi2html -toc_file=$@ -split=chapter -nosec_nav -nomenu -init_file pintos-t2h.init -nonumber $<
+pintos.html: $(TEXIS) texi2html
+       ./texi2html -toc_file=$@ -split=chapter -nosec_nav -nomenu -init_file pintos-t2h.init $<
 
 pintos.info: $(TEXIS)
        makeinfo $<
 
-pintos.dvi: $(TEXIS) mlfqs1.eps mlfqs2.eps
+pintos.text: $(TEXIS)
+       makeinfo --plaintext -o $@ $<
+
+pintos.dvi: $(TEXIS)
        texi2dvi $< -o $@
 
 pintos.ps: pintos.dvi
        dvips $< -o $@
 
-pintos.pdf: $(TEXIS) mlfqs1.pdf mlfqs2.pdf
+pintos.pdf: $(TEXIS)
        texi2pdf $< -o $@
 
-%.eps: %.jgr
-       (jgraph $< > $@.tmp && mv $@.tmp $@) || touch $@
-
-%.png: %.eps
-       convert $< $@
-
-%.pdf: %.eps
-       epstopdf $< --outfile=$@
+%.texi: %
+       sed < $< > $@ 's/\([{}@]\)/\@\1/g;'
 
 clean:
-       rm -f *.info *.html *.png
-       rm -f *.dvi *.pdf *.ps *.log
+       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)