aboutsummaryrefslogtreecommitdiff
path: root/documentation/Makefile
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@openbios.org>2003-11-22 15:15:47 +0000
committerStefan Reinauer <stepan@openbios.org>2003-11-22 15:15:47 +0000
commit37414ca2c6e59649f8eee4da4a37b5ae57617dcf (patch)
tree7f912dfe8cb9321c341c093f337d8d69ebd051a5 /documentation/Makefile
parentdcac0161d443c6846092afedd58bb84e84e458ad (diff)
initial version of LinuxBIOS on AMD64 paper
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1298 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'documentation/Makefile')
-rw-r--r--documentation/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/documentation/Makefile b/documentation/Makefile
new file mode 100644
index 0000000000..1b063ffa3f
--- /dev/null
+++ b/documentation/Makefile
@@ -0,0 +1,33 @@
+#
+# Makefile for LinuxBIOS paper.
+# hacked together by Stefan Reinauer <stepan@openbios.org>
+#
+
+PDFLATEX=pdflatex -t a4
+
+FIGS=codeflow.pdf hypertransport.pdf
+
+all: LinuxBIOS-AMD64.pdf
+
+
+codeflow.pdf: codeflow.eps
+ epstopdf $< -o=$@
+
+hypertransport.pdf: hypertransport.eps
+ epstopdf $< -o=$@
+
+LinuxBIOS-AMD64.toc: $(FIGS) LinuxBIOS-AMD64.tex
+ # 2 times to make sure we have a current toc.
+ $(PDFLATEX) LinuxBIOS-AMD64.tex
+ $(PDFLATEX) LinuxBIOS-AMD64.tex
+
+LinuxBIOS-AMD64.pdf: $(FIGS) LinuxBIOS-AMD64.tex LinuxBIOS-AMD64.toc
+ $(PDFLATEX) LinuxBIOS-AMD64.tex
+
+clean:
+ rm -f *.aux *.idx *.log *.toc *.out $(FIGS)
+
+distclean: clean
+ rm -f LinuxBIOS-AMD64.pdf
+
+