Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / doc / Makefile
index 446b2b345cb921edad687ee4323f7bc4f81b26b8..8a4d80e8a26e08b1fac2180c5b53cbcdfc7f80dc 100644 (file)
@@ -1,20 +1,40 @@
-TEXIS = projects.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 tour.texi threads.texi userprog.texi    \
+vm.texi filesys.texi references.texi standards.texi doc.texi           \
+sample.tmpl devel.texi debug.texi 44bsd.texi
 
-all: projects.html projects.info
+all: pintos.html pintos.info pintos.dvi pintos.ps pintos.pdf
 
-projects.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 $<
 
-projects.info: $(TEXIS)
+pintos.info: $(TEXIS)
        makeinfo $<
 
+pintos.dvi: $(TEXIS)
+       texi2dvi $< -o $@
+
+pintos.ps: pintos.dvi
+       dvips $< -o $@
+
+pintos.pdf: $(TEXIS)
+       texi2pdf $< -o $@
+
 %.eps: %.jgr
        (jgraph $< > $@.tmp && mv $@.tmp $@) || touch $@
 
 %.png: %.eps
        convert $< $@
 
+%.pdf: %.eps
+       epstopdf $< --outfile=$@
+
 clean:
        rm -f *.info *.html *.png
+       rm -f *.dvi *.pdf *.ps *.log *~
+       rm -rf WWW
+
+dist: pintos.html pintos.pdf
+       rm -rf WWW
+       mkdir WWW WWW/specs
+       cp *.html *.png *.pdf *.css WWW
+       (cd ../specs && cp -r *.pdf freevga kbd sysv-abi-update.html ../doc/WWW/specs)