From 9e05689406c83ae3020ca32a6ec6387466209138 Mon Sep 17 00:00:00 2001 From: Christian Eppler Date: Mon, 13 May 2013 16:22:27 +0200 Subject: Implement Kconfig build system Signed-off-by: Christian Eppler --- linux-basics/boot-process/Kconfig | 5 +++++ linux-basics/boot-process/Makefile | 11 ++--------- 2 files changed, 7 insertions(+), 9 deletions(-) create mode 100644 linux-basics/boot-process/Kconfig (limited to 'linux-basics/boot-process') diff --git a/linux-basics/boot-process/Kconfig b/linux-basics/boot-process/Kconfig new file mode 100644 index 0000000..8846db2 --- /dev/null +++ b/linux-basics/boot-process/Kconfig @@ -0,0 +1,5 @@ +config LINUX_BOOT_PROCESS + bool "boot process papers" + default y + help + Papers about boot process diff --git a/linux-basics/boot-process/Makefile b/linux-basics/boot-process/Makefile index d641258..3e6e7f6 100644 --- a/linux-basics/boot-process/Makefile +++ b/linux-basics/boot-process/Makefile @@ -1,9 +1,2 @@ -all: - for pdf in `ls -1 *.tex` ; do \ - TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \ - TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \ - done - -clean: - rm -f *.aux *.log *.pdf *.log *.snm *.toc *.vrb *.nav *.out - +obj-$(CONFIG_LINUX_BOOT_PROCESS) += hints_boot-process_de.pdf pres_boot-process_de.pdf +obj-handout-$(CONFIG_LINUX_BOOT_PROCESS) +=handout_boot-process_de.pdf -- cgit v1.2.3