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/qconf/Makefile.am | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 kconfig-frontends/frontends/qconf/Makefile.am (limited to 'kconfig-frontends/frontends/qconf/Makefile.am') diff --git a/kconfig-frontends/frontends/qconf/Makefile.am b/kconfig-frontends/frontends/qconf/Makefile.am new file mode 100644 index 0000000..adbcc1e --- /dev/null +++ b/kconfig-frontends/frontends/qconf/Makefile.am @@ -0,0 +1,23 @@ +bin_PROGRAMS = qconf + +qconf_SOURCES = qconf.cc qconf.h +BUILT_SOURCES = qconf.moc +qconf_CPPFLAGS = $(AM_CPPFLAGS) \ + $(intl_CPPFLAGS) \ + -I$(top_srcdir)/libs/parser \ + -I$(top_builddir)/libs/images +qconf_CXXFLAGS = $(AM_CXXFLAGS) \ + $(kf_CFLAGS) \ + $(qt4_CFLAGS) +qconf_LDADD = $(top_builddir)/libs/parser/libkconfig-parser.la \ + $(top_builddir)/libs/images/libkconfig-images.a \ + $(intl_LIBS) $(qt4_LIBS) $(qconf_EXTRA_LIBS) +CLEANFILES = qconf.moc +EXTRA_DIST = qconf.cc.patch + +AM_V_MOC = $(AM_V_MOC_$(V)) +AM_V_MOC_ = $(AM_V_MOC_$(AM_DEFAULT_VERBOSITY)) +AM_V_MOC_0 = @echo " MOC " $@; + +.h.moc: + $(AM_V_MOC)$(MOC) -i $< -o $@ -- cgit v1.2.3