diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:23:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:23:22 +0000 |
commit | e42129241681dde7adae7d20697e7b421682fbb4 (patch) | |
tree | af1fe815a5e639e68e59fabd8395ec69458b3e5e /app/config/Makefile.am | |
parent | Initial commit. (diff) | |
download | gimp-upstream/2.10.22.tar.xz gimp-upstream/2.10.22.zip |
Adding upstream version 2.10.22.upstream/2.10.22upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'app/config/Makefile.am')
-rw-r--r-- | app/config/Makefile.am | 165 |
1 files changed, 165 insertions, 0 deletions
diff --git a/app/config/Makefile.am b/app/config/Makefile.am new file mode 100644 index 0000000..04ac126 --- /dev/null +++ b/app/config/Makefile.am @@ -0,0 +1,165 @@ +## Process this file with automake to produce Makefile.in + +libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la +libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la +libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la +libgimpthumb = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la + +if OS_WIN32 +else +libm = -lm +endif + +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Config\" \ + -DGIMP_APP_VERSION_STRING=\"$(GIMP_APP_VERSION)\" \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GIO_UNIX_CFLAGS) \ + $(GIO_WINDOWS_CFLAGS) \ + $(GEGL_CFLAGS) \ + $(CAIRO_CFLAGS) \ + $(GDK_PIXBUF_CFLAGS) \ + $(MYPAINT_BRUSHES_CFLAGS) \ + -I$(includedir) + +noinst_LIBRARIES = libappconfig.a + +libappconfig_a_sources = \ + config-enums.h \ + config-types.h \ + gimpconfig-dump.c \ + gimpconfig-dump.h \ + gimpconfig-file.c \ + gimpconfig-file.h \ + gimpconfig-utils.c \ + gimpconfig-utils.h \ + gimpcoreconfig.c \ + gimpcoreconfig.h \ + gimpdialogconfig.c \ + gimpdialogconfig.h \ + gimpdisplayconfig.c \ + gimpdisplayconfig.h \ + gimpdisplayoptions.c \ + gimpdisplayoptions.h \ + gimpgeglconfig.c \ + gimpgeglconfig.h \ + gimpguiconfig.c \ + gimpguiconfig.h \ + gimplangrc.c \ + gimplangrc.h \ + gimppluginconfig.c \ + gimppluginconfig.h \ + gimprc.c \ + gimprc.h \ + gimprc-blurbs.h \ + gimprc-deserialize.c \ + gimprc-deserialize.h \ + gimprc-serialize.c \ + gimprc-serialize.h \ + gimprc-unknown.c \ + gimprc-unknown.h \ + gimpxmlparser.c \ + gimpxmlparser.h + +libappconfig_a_built_sources = \ + config-enums.c + +libappconfig_a_SOURCES = \ + $(libappconfig_a_built_sources) \ + $(libappconfig_a_sources) + +EXTRA_PROGRAMS = test-config + +# +# unit tests for the GimpConfig system +# + +TESTS = test-config + +test_config_DEPENDENCIES = $(gimpconfig_libs) + +# We need this due to circular dependencies +test_config_LDFLAGS = \ + -Wl,-u,$(SYMPREFIX)gimp_vectors_undo_get_type \ + -Wl,-u,$(SYMPREFIX)gimp_vectors_mod_undo_get_type \ + -Wl,-u,$(SYMPREFIX)gimp_param_spec_duplicate \ + -Wl,-u,$(SYMPREFIX)xcf_init \ + -Wl,-u,$(SYMPREFIX)internal_procs_init \ + -Wl,-u,$(SYMPREFIX)gimp_plug_in_manager_restore \ + -Wl,-u,$(SYMPREFIX)gimp_pdb_compat_param_spec \ + -Wl,-u,$(SYMPREFIX)gimp_layer_mode_is_legacy \ + -Wl,-u,$(SYMPREFIX)gimp_async_set_new \ + -Wl,-u,$(SYMPREFIX)gimp_uncancelable_waitable_new + +test_config_LDADD = \ + ../xcf/libappxcf.a \ + ../pdb/libappinternal-procs.a \ + ../pdb/libapppdb.a \ + ../plug-in/libappplug-in.a \ + ../vectors/libappvectors.a \ + ../core/libappcore.a \ + ../file/libappfile.a \ + ../file-data/libappfile-data.a \ + ../text/libapptext.a \ + ../paint/libapppaint.a \ + ../gegl/libappgegl.a \ + ../operations/libappoperations.a \ + ../operations/layer-modes/libapplayermodes.a \ + ../operations/layer-modes-legacy/libapplayermodeslegacy.a \ + libappconfig.a \ + ../gimp-debug.o \ + ../gimp-log.o \ + $(libgimpmodule) \ + $(libgimpcolor) \ + $(libgimpthumb) \ + $(libgimpmath) \ + $(libgimpconfig) \ + $(libgimpbase) \ + $(PANGOCAIRO_LIBS) \ + $(HARFBUZZ_LIBS) \ + $(GDK_PIXBUF_LIBS) \ + $(GEGL_LIBS) \ + $(GIO_LIBS) \ + $(GEXIV2_LIBS) \ + $(Z_LIBS) \ + $(JSON_C_LIBS) \ + $(LIBMYPAINT_LIBS) \ + $(libm) + +CLEANFILES = $(EXTRA_PROGRAMS) foorc + +# +# rules to generate built sources +# +# setup autogeneration dependencies +gen_sources = xgen-cec +CLEANFILES += $(gen_sources) + +xgen-cec: $(srcdir)/config-enums.h $(GIMP_MKENUMS) Makefile.am + $(AM_V_GEN) $(GIMP_MKENUMS) \ + --fhead "#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"config-enums.h\"\n#include\"gimp-intl.h\"" \ + --fprod "\n/* enumerations from \"@basename@\" */" \ + --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 {" \ + --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@" \ + --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" \ + $< > $@ + +# 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. +$(srcdir)/config-enums.c: xgen-cec + $(AM_V_GEN) if ! cmp -s $< $@; then \ + cp $< $@; \ + else \ + touch $@ 2> /dev/null \ + || true; \ + fi |