diff options
author | Stefan Reinauer <stepan@openbios.org> | 2003-11-22 15:15:47 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2003-11-22 15:15:47 +0000 |
commit | 37414ca2c6e59649f8eee4da4a37b5ae57617dcf (patch) | |
tree | 7f912dfe8cb9321c341c093f337d8d69ebd051a5 /documentation/Makefile | |
parent | dcac0161d443c6846092afedd58bb84e84e458ad (diff) | |
download | coreboot-37414ca2c6e59649f8eee4da4a37b5ae57617dcf.tar.xz |
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/Makefile | 33 |
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 + + |