summaryrefslogtreecommitdiff
path: root/kconfig-frontends/frontends/mconf/Makefile.am
diff options
context:
space:
mode:
authorChristian Eppler <c.eppler@linutonix.de>2013-05-13 16:22:27 +0200
committerChristian Eppler <c.eppler@linutonix.de>2013-05-13 16:22:27 +0200
commit9e05689406c83ae3020ca32a6ec6387466209138 (patch)
tree20a95a65df7e46b584c666ec74850df6d62b3045 /kconfig-frontends/frontends/mconf/Makefile.am
parentcea5039322781f6085dd47954af5584ca3f78911 (diff)
Implement Kconfig build system
Signed-off-by: Christian Eppler <c.eppler@linutonix.de>
Diffstat (limited to 'kconfig-frontends/frontends/mconf/Makefile.am')
-rw-r--r--kconfig-frontends/frontends/mconf/Makefile.am13
1 files changed, 13 insertions, 0 deletions
diff --git a/kconfig-frontends/frontends/mconf/Makefile.am b/kconfig-frontends/frontends/mconf/Makefile.am
new file mode 100644
index 0000000..5ea3c48
--- /dev/null
+++ b/kconfig-frontends/frontends/mconf/Makefile.am
@@ -0,0 +1,13 @@
+bin_PROGRAMS = mconf
+
+mconf_SOURCES = mconf.c
+mconf_CPPFLAGS = $(AM_CPPFLAGS) \
+ ${ncurses_mconf_CPPFLAGS} \
+ $(intl_CPPFLAGS) \
+ -I$(top_srcdir)/libs \
+ -I$(top_srcdir)/libs/parser
+mconf_CFLAGS = $(AM_CFLAGS) \
+ $(kf_CFLAGS)
+mconf_LDADD = $(top_builddir)/libs/parser/libkconfig-parser.la \
+ $(top_builddir)/libs/lxdialog/libkconfig-lxdialog.a \
+ $(intl_LIBS) $(ncurses_LIBS) $(mconf_EXTRA_LIBS)