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 --- kconfig-frontends/frontends/Makefile.am | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 kconfig-frontends/frontends/Makefile.am (limited to 'kconfig-frontends/frontends/Makefile.am') diff --git a/kconfig-frontends/frontends/Makefile.am b/kconfig-frontends/frontends/Makefile.am new file mode 100644 index 0000000..0badbc8 --- /dev/null +++ b/kconfig-frontends/frontends/Makefile.am @@ -0,0 +1,16 @@ +if COND_conf + MAYBE_conf = conf +endif +if COND_mconf + MAYBE_mconf = mconf +endif +if COND_nconf + MAYBE_nconf = nconf +endif +if COND_gconf + MAYBE_gconf = gconf +endif +if COND_qconf + MAYBE_qconf = qconf +endif +SUBDIRS = $(MAYBE_conf) $(MAYBE_mconf) $(MAYBE_nconf) $(MAYBE_gconf) $(MAYBE_qconf) -- cgit v1.2.3