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 /security | |
| parent | cea5039322781f6085dd47954af5584ca3f78911 (diff) | |
Implement Kconfig build system
Signed-off-by: Christian Eppler <c.eppler@linutonix.de>
Diffstat (limited to 'security')
| -rw-r--r-- | security/Makefile | 6 | ||||
| -rw-r--r-- | security/vpn/Kconfig | 6 | ||||
| -rw-r--r-- | security/vpn/Makefile | 9 |
3 files changed, 7 insertions, 14 deletions
diff --git a/security/Makefile b/security/Makefile deleted file mode 100644 index 8aa670f..0000000 --- a/security/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -SUBDIRS = `find -mindepth 1 -type d` - -all clean:: - for dir in $(SUBDIRS) ; do \ - (cd $$dir && make $@); \ - done diff --git a/security/vpn/Kconfig b/security/vpn/Kconfig new file mode 100644 index 0000000..e44757b --- /dev/null +++ b/security/vpn/Kconfig @@ -0,0 +1,6 @@ +config SECURITY_VPN + bool "Security/vpn papers" + default y + help + Papers abaout vpn security + diff --git a/security/vpn/Makefile b/security/vpn/Makefile index 7d530a5..29578e6 100644 --- a/security/vpn/Makefile +++ b/security/vpn/Makefile @@ -1,9 +1,2 @@ -all: - for pdf in `ls -1 handout_*.tex pres_*.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_SECURITY_VPN) = pres_vpn-fasttrack_en.pdf |
