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 --- application-devel/app-debugging/Kconfig | 7 +++++++ application-devel/app-debugging/Makefile | 11 ++--------- 2 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 application-devel/app-debugging/Kconfig (limited to 'application-devel/app-debugging') diff --git a/application-devel/app-debugging/Kconfig b/application-devel/app-debugging/Kconfig new file mode 100644 index 0000000..3802821 --- /dev/null +++ b/application-devel/app-debugging/Kconfig @@ -0,0 +1,7 @@ +config APPLICATION_DEBUGGING + bool "Application debugging papers" + default y + help + Papers about application debugging + + diff --git a/application-devel/app-debugging/Makefile b/application-devel/app-debugging/Makefile index d641258..aa043f0 100644 --- a/application-devel/app-debugging/Makefile +++ b/application-devel/app-debugging/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_APPLICATION_DEBUGGING) += pres_app-debugging_de.pdf +obj-handout-$(CONFIG_APPLICATION_DEBUGGING) += handout_app-debugging_de.pdf -- cgit v1.2.3