diff options
Diffstat (limited to 'distribution')
| -rw-r--r-- | distribution/Kconfig | 9 | ||||
| -rw-r--r-- | distribution/Makefile | 6 | ||||
| -rw-r--r-- | distribution/debian/Kconfig | 5 | ||||
| -rw-r--r-- | distribution/debian/Makefile | 10 | ||||
| -rw-r--r-- | distribution/elbe-devel/Kconfig | 5 | ||||
| -rw-r--r-- | distribution/elbe-example/Makefile | 10 | ||||
| -rw-r--r-- | distribution/elbe-usage/Kconfig | 5 | ||||
| -rw-r--r-- | distribution/elbe-usage/Makefile | 10 | ||||
| -rw-r--r-- | distribution/elbe/Kconfig | 5 | ||||
| -rw-r--r-- | distribution/elbe/Makefile | 10 |
10 files changed, 33 insertions, 42 deletions
diff --git a/distribution/Kconfig b/distribution/Kconfig new file mode 100644 index 0000000..3b645ff --- /dev/null +++ b/distribution/Kconfig @@ -0,0 +1,9 @@ +menuconfig ELBE + bool "Elbe build system" + +if ELBE + source "distribution/elbe-devel/Kconfig" + source "distribution/elbe-usage/Kconfig" + source "distribution/debian/Kconfig" + source "distribution/elbe/Kconfig" +endif diff --git a/distribution/Makefile b/distribution/Makefile deleted file mode 100644 index 0a202ea..0000000 --- a/distribution/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/distribution/debian/Kconfig b/distribution/debian/Kconfig new file mode 100644 index 0000000..f9dc52d --- /dev/null +++ b/distribution/debian/Kconfig @@ -0,0 +1,5 @@ +config DEBIAN + bool "Information about the Debian distribution" + default y + help + Overview of the Debian distribution diff --git a/distribution/debian/Makefile b/distribution/debian/Makefile index d641258..9baa59d 100644 --- a/distribution/debian/Makefile +++ b/distribution/debian/Makefile @@ -1,9 +1 @@ -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_DEBIAN) = pres_debian.pdf diff --git a/distribution/elbe-devel/Kconfig b/distribution/elbe-devel/Kconfig new file mode 100644 index 0000000..59cde6d --- /dev/null +++ b/distribution/elbe-devel/Kconfig @@ -0,0 +1,5 @@ +config ELBE_DEVEL + bool "ELBE development papers" + default y + help + Papers about ELBE development diff --git a/distribution/elbe-example/Makefile b/distribution/elbe-example/Makefile index d641258..0881674 100644 --- a/distribution/elbe-example/Makefile +++ b/distribution/elbe-example/Makefile @@ -1,9 +1 @@ -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_ELBE_DEVEL) += pres_elbe-devel_en.pdf diff --git a/distribution/elbe-usage/Kconfig b/distribution/elbe-usage/Kconfig new file mode 100644 index 0000000..e91060e --- /dev/null +++ b/distribution/elbe-usage/Kconfig @@ -0,0 +1,5 @@ +config ELBE_USAGE + bool "ELBE user papers" + default y + help + Papers about ELBE usage diff --git a/distribution/elbe-usage/Makefile b/distribution/elbe-usage/Makefile index d641258..73ae625 100644 --- a/distribution/elbe-usage/Makefile +++ b/distribution/elbe-usage/Makefile @@ -1,9 +1 @@ -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_ELBE_USAGE) += pres_elbe-usage_en.pdf diff --git a/distribution/elbe/Kconfig b/distribution/elbe/Kconfig new file mode 100644 index 0000000..ede6465 --- /dev/null +++ b/distribution/elbe/Kconfig @@ -0,0 +1,5 @@ +config ELBE_BASICS + bool "Basic information about the ELBE project" + default y + help + Overview and basic information about ELBE diff --git a/distribution/elbe/Makefile b/distribution/elbe/Makefile index d641258..c054f16 100644 --- a/distribution/elbe/Makefile +++ b/distribution/elbe/Makefile @@ -1,9 +1 @@ -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_ELBE_BASICS) = pres_elbe.pdf |
