diff options
| author | Christian Eppler <c.eppler@linutonix.de> | 2013-05-13 16:22:27 +0200 |
|---|---|---|
| committer | Christian Eppler <c.eppler@linutonix.de> | 2013-05-13 16:22:27 +0200 |
| commit | 9e05689406c83ae3020ca32a6ec6387466209138 (patch) | |
| tree | 20a95a65df7e46b584c666ec74850df6d62b3045 /frameworks | |
| parent | cea5039322781f6085dd47954af5584ca3f78911 (diff) | |
Implement Kconfig build system
Signed-off-by: Christian Eppler <c.eppler@linutonix.de>
Diffstat (limited to 'frameworks')
| -rw-r--r-- | frameworks/Makefile | 6 | ||||
| -rw-r--r-- | frameworks/middleware/Kconfig | 5 | ||||
| -rw-r--r-- | frameworks/middleware/Makefile | 11 |
3 files changed, 7 insertions, 15 deletions
diff --git a/frameworks/Makefile b/frameworks/Makefile deleted file mode 100644 index 0a202ea..0000000 --- a/frameworks/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -SUBDIRS = `ls -1 | grep -v *.tex | grep -v Makefile | grep -v TODO` - -all clean:: - for dir in $(SUBDIRS) ; do \ - (cd $$dir && make $@); \ - done diff --git a/frameworks/middleware/Kconfig b/frameworks/middleware/Kconfig new file mode 100644 index 0000000..b2bd211 --- /dev/null +++ b/frameworks/middleware/Kconfig @@ -0,0 +1,5 @@ +config MIDDLEWARE + bool "Middleware papers" + default y + help + Papers about middleware diff --git a/frameworks/middleware/Makefile b/frameworks/middleware/Makefile index d641258..d4b7fc5 100644 --- a/frameworks/middleware/Makefile +++ b/frameworks/middleware/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_MIDDLEWARE) += hints_middleware.pdf pres_middleware.pdf +obj-handout-$(CONFIG_MIDDLEWARE) += handout_middleware.pdf |
