diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2018-09-25 23:15:16 +0200 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2018-09-26 18:51:56 +0000 |
commit | bdebc8918c4b19c2065d8fd9469cf507f13f3e36 (patch) | |
tree | c4c60edc908461d534c8f9359a5a09e0a8b5c4ad /Documentation/Makefile | |
parent | 4fe3ba1ea8c5e0fff5a73eb06d76f1cdd09f48cf (diff) |
Documentation: Remove Kconfig.tex and related infrastructure
This part of our documentation has bitrotted for a long time.
Any remaining information should ideally be moved to
Documentation/getting_started/kconfig.md.
Change-Id: I3920d002813c2838285446dc0ed8dacfa5364581
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/28665
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 30 |
1 files changed, 3 insertions, 27 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 0fb21f5c41..ed08936b7b 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -7,7 +7,7 @@ PDFLATEX=pdflatex -t a4 FIGS=codeflow.pdf hypertransport.pdf -all: corebootPortingGuide.pdf Kconfig.pdf +all: corebootPortingGuide.pdf SVG2PDF=$(shell which svg2pdf) INKSCAPE=$(shell which inkscape) @@ -39,30 +39,6 @@ corebootPortingGuide.toc: $(FIGS) corebootBuildingGuide.tex corebootPortingGuide.pdf: $(FIGS) corebootBuildingGuide.tex corebootPortingGuide.toc $(PDFLATEX) corebootBuildingGuide.tex -Kconfig.pdf: Kconfig.tex mainboardkconfig.tex cpukconfig.tex socketfkconfig.tex - $(PDFLATEX) $< - -# quick, somebody! make me a macro! -mainboardkconfig.tex: ../src/mainboard/Kconfig - cat beginverbatim.tex > $@ - grep '^config' $< | awk '{print $2}' >>$@ - cat endverbatim.tex >> $@ - -skconfig.tex: ../src/mainboard/amd/serengeti_cheetah/Kconfig - cat beginverbatim.tex > $@ - grep '^config' $< | awk '{print $2}' >>$@ - cat endverbatim.tex >> $@ - -cpukconfig.tex: ../src/cpu/Kconfig - cat beginverbatim.tex > $@ - grep '^config' $< | awk '{print $2}' >>$@ - cat endverbatim.tex >> $@ - -socketfkconfig.tex: ../src/cpu/amd/socket_F/Kconfig - cat beginverbatim.tex > $@ - grep '^config' $< | awk '{print $2}' >>$@ - cat endverbatim.tex >> $@ - sphinx: $(MAKE) -f Makefile.sphinx html @@ -70,10 +46,10 @@ clean-sphinx: $(MAKE) -f Makefile.sphinx clean clean: clean-sphinx - rm -f *.aux *.idx *.log *.toc *.out $(FIGS) mainboardkconfig.tex skconfig.tex cpukconfig.tex socketfkconfig.tex + rm -f *.aux *.idx *.log *.toc *.out $(FIGS) distclean: clean - rm -f corebootPortingGuide.pdf Kconfig.pdf + rm -f corebootPortingGuide.pdf livesphinx: $(MAKE) -f Makefile.sphinx livehtml |