2007-12-29 08:57:51 +08:00
## Process this file with automake to produce Makefile.in
2008-10-07 19:58:14 +08:00
AM_CPPFLAGS = \
2013-06-06 02:48:37 +08:00
-DG_LOG_DOMAIN= \" Gimp-GEGL\" \
-I$( top_builddir) \
-I$( top_srcdir) \
-I$( top_builddir) /app \
-I$( top_srcdir) /app \
$( CAIRO_CFLAGS) \
$( GEGL_CFLAGS) \
$( GDK_PIXBUF_CFLAGS) \
2008-10-07 19:58:14 +08:00
-I$( includedir)
2017-08-18 00:42:34 +08:00
noinst_LIBRARIES = \
libappgegl-generic.a \
libappgegl-sse2.a \
libappgegl.a
2007-12-29 08:57:51 +08:00
2017-08-18 00:42:34 +08:00
libappgegl_generic_a_sources = \
2012-05-11 03:22:44 +08:00
gimp-gegl-enums.h \
gimp-gegl-types.h \
gimp-babl.c \
gimp-babl.h \
gimp-babl-compat.c \
gimp-babl-compat.h \
gimp-gegl.c \
gimp-gegl.h \
2012-10-22 22:03:40 +08:00
gimp-gegl-apply-operation.c \
gimp-gegl-apply-operation.h \
2012-05-11 03:22:44 +08:00
gimp-gegl-loops.c \
gimp-gegl-loops.h \
2013-04-09 06:38:46 +08:00
gimp-gegl-mask.c \
gimp-gegl-mask.h \
2013-04-09 03:54:46 +08:00
gimp-gegl-mask-combine.c \
gimp-gegl-mask-combine.h \
2012-05-11 03:22:44 +08:00
gimp-gegl-nodes.c \
gimp-gegl-nodes.h \
gimp-gegl-tile-compat.c \
gimp-gegl-tile-compat.h \
gimp-gegl-utils.c \
gimp-gegl-utils.h \
2012-05-26 18:42:52 +08:00
gimpapplicator.c \
2012-07-06 03:42:26 +08:00
gimpapplicator.h \
2015-03-11 15:14:00 +08:00
gimptilehandlervalidate.c \
gimptilehandlervalidate.h
2010-11-05 05:14:58 +08:00
2017-08-18 00:42:34 +08:00
libappgegl_generic_a_built_sources = gimp-gegl-enums.c
libappgegl_sse2_a_sources = \
gimp-gegl-loops-sse2.c \
gimp-gegl-loops-sse2.h
libappgegl_generic_a_SOURCES = $( libappgegl_generic_a_built_sources) $( libappgegl_generic_a_sources)
libappgegl_sse2_a_SOURCES = $( libappgegl_sse2_a_sources)
libappgegl_sse2_a_CFLAGS = $( SSE2_EXTRA_CFLAGS)
libappgegl_a_SOURCES =
libappgegl.a : libappgegl -generic .a \
libappgegl-sse2.a
$( AR) $( ARFLAGS) libappgegl.a \
$( libappgegl_generic_a_OBJECTS) \
$( libappgegl_sse2_a_OBJECTS)
$( RANLIB) libappgegl.a
2010-11-05 05:14:58 +08:00
#
# rules to generate built sources
#
# setup autogeneration dependencies
2017-05-23 05:19:17 +08:00
gen_sources = xgen-ggec
2010-11-05 05:14:58 +08:00
CLEANFILES = $( gen_sources)
2017-05-23 05:19:17 +08:00
xgen-ggec : $( srcdir ) /gimp -gegl -enums .h $( GIMP_MKENUMS ) Makefile .am
2017-05-23 08:12:50 +08:00
$( AM_V_GEN) $( GIMP_MKENUMS) \
2013-10-15 07:58:39 +08:00
--fhead "#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"core/core-enums.h\"\n#include \"gimp-gegl-enums.h\"\n#include \"gimp-intl.h\"" \
2017-05-23 08:12:50 +08:00
--fprod "\n/* enumerations from \"@basename@\" */" \
2010-11-05 05:14:58 +08:00
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
--vtail " { 0, NULL, NULL }\n };\n" \
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
2017-11-30 05:27:59 +08:00
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
2010-11-05 05:14:58 +08:00
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
2017-05-23 08:12:50 +08:00
$< > $@
2017-05-23 05:19:17 +08:00
2017-06-02 22:53:44 +08:00
# copy the generated enum file back to the source directory only if it's
# changed; otherwise, only update its timestamp, so that the recipe isn't
# executed again on the next build, however, allow this to (harmlessly) fail,
# to support building from a read-only source tree.
2017-05-23 05:19:17 +08:00
$(srcdir)/gimp-gegl-enums.c : xgen -ggec
$( AM_V_GEN) if ! cmp -s $< $@ ; then \
cp $< $@ ; \
else \
touch $@ 2> /dev/null \
|| true; \
fi