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/utils/Makefile.am | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 kconfig-frontends/utils/Makefile.am (limited to 'kconfig-frontends/utils/Makefile.am') diff --git a/kconfig-frontends/utils/Makefile.am b/kconfig-frontends/utils/Makefile.am new file mode 100644 index 0000000..57ff288 --- /dev/null +++ b/kconfig-frontends/utils/Makefile.am @@ -0,0 +1,21 @@ +bin_SCRIPTS = tweak +dist_bin_SCRIPTS = diff merge + +if COND_utils_gettext + MAYBE_utils_gettext = gettext +endif +bin_PROGRAMS = $(MAYBE_utils_gettext) + +gettext_SOURCES = gettext.c +gettext_CPPFLAGS = $(AM_CPPFLAGS) \ + -I$(top_srcdir)/libs/parser +gettext_CFLAGS = $(AM_CFLAGS) $(kf_CFLAGS) +gettext_LDADD = $(top_builddir)/libs/parser/libkconfig-parser.la \ + $(intl_LIBS) +CLEANFILES = tweak +EXTRA_DIST = tweak.in tweak.in.patch + +tweak: tweak.in + $(AM_V_GEN)$(SED) -r -e "s/@CONFIG_@/$(config_prefix)/g" \ + $< >$@ + @chmod +x $@ -- cgit v1.2.3