Rename 'make doc' to 'make doxy' (and 'make doxygen').

Instead, we now use 'make doc' to generate the PDF doc/design/newboot.pdf.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@252 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Uwe Hermann 2007-03-12 11:46:33 +00:00
commit fad0e246f4

View file

@ -45,6 +45,7 @@ HOSTCXX := g++
HOSTCFLAGS := -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \
-Wno-unused -Wno-sign-compare -Wno-pointer-sign
LYX := lyx
DOXYGEN := doxygen
DOXYGEN_OUTPUT_DIR := doxygen
@ -102,7 +103,11 @@ endif
include util/Makefile
doc:
$(DOXYGEN) util/doxygen/Doxyfile.LinuxBIOS
$(Q)$(LYX) -e pdf doc/design/newboot.lyx
doxy:
doxygen:
$(Q)$(DOXYGEN) util/doxygen/Doxyfile.LinuxBIOS
prepare:
$(Q)mkdir -p $(obj)
@ -124,6 +129,8 @@ clean:
$(Q)rm -rf $(obj)
$(Q)printf " CLEAN $(subst $(shell pwd)/,,$(DOXYGEN_OUTPUT_DIR))\n"
$(Q)rm -rf $(DOXYGEN_OUTPUT_DIR)
$(Q)printf " CLEAN doc/design/newboot.pdf\n"
$(Q)rm -f doc/design/newboot.pdf
distclean: clean
$(Q)printf " CLEAN .kconfig.d .config .tmpconfig.h .config.old .xcompile\n"