From b6e03200a49d2f682633d102a193afc98e38594b Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 12 Aug 2009 20:25:24 +0000 Subject: \\ are not escaped in a sane way between fedora and ubuntu! Just create these files to make sure that we don't get idiotic problems. Fix things so they build. Signed-off-by: Ronald G. Minnich Acked-by: Ronald G. Minnich git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4540 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- documentation/Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'documentation/Makefile') diff --git a/documentation/Makefile b/documentation/Makefile index 264bc922a2..71967a464b 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -44,29 +44,29 @@ Kconfig.pdf: Kconfig.tex mainboardkconfig.tex cpukconfig.tex socketfkconfig.tex # quick, somebody! make me a macro! mainboardkconfig.tex: ../src/mainboard/Kconfig - echo '\begin{verbatim}' > $@ + cat beginverbatim.tex > $@ grep '^config' $< | awk '{print $2}' >>$@ - echo '\end{verbatim}' >> $@ + cat endverbatim.tex >> $@ skconfig.tex: ../src/mainboard/amd/serengeti_cheetah/Kconfig - echo '\begin{verbatim}' > $@ + cat beginverbatim.tex > $@ grep '^config' $< | awk '{print $2}' >>$@ - echo '\end{verbatim}' >> $@ + cat endverbatim.tex >> $@ cpukconfig.tex: ../src/cpu/Kconfig - echo '\begin{verbatim}' > $@ + cat beginverbatim.tex > $@ grep '^config' $< | awk '{print $2}' >>$@ - echo '\end{verbatim}' >> $@ + cat endverbatim.tex >> $@ socketfkconfig.tex: ../src/cpu/amd/socket_F/Kconfig - echo '\begin{verbatim}' > $@ + cat beginverbatim.tex > $@ grep '^config' $< | awk '{print $2}' >>$@ - echo '\end{verbatim}' >> $@ + cat endverbatim.tex >> $@ clean: - rm -f *.aux *.idx *.log *.toc *.out $(FIGS) mainboardkconfig.tex + rm -f *.aux *.idx *.log *.toc *.out $(FIGS) mainboardkconfig.tex skconfig.tex cpukconfig.tex socketkconfig.tex distclean: clean - rm -f LinuxBIOS-AMD64.pdf mainboardkconfig.tex + rm -f LinuxBIOS-AMD64.pdf -- cgit v1.2.3