Simplifies chooser widgets (e.g. GimpBrushSelect) by eliminating attributes (e.g. opacity) of chosen resource. See #8745, but this commit fixes that by first refactoring the code. Refactors GUI widgets (e.g. GimpBrushSelectButton and GimpBrushSelect etc.) Refactor by "Extract class" GimpResourceSelectButton from GimpBrushSelectButton etc. This moves common code into an inherited class (formerly called GimpSelectButton) but the subclasses still exist. The subclasses mainly just do drawing now. Refactor by "Extract module" GimpResourceSelect from GimpBrushSelect etc. Moves common code into one file, generic at runtime on type of GimpResource, that is, the new code dispatches on type i.e. switch statements. In the future, when core is changed some of that can be deleted. The files gimpbrushselect.[c,h] etc. are deleted. The module adapts the API from core to the API of callbacks to libgimp. Note that core is running the resource chooser (select) widgets remotely. Core is still calling back over the wire via PDB with more attributes than necessary. The new design gets the attributes from the resource themselves, instead of receiving them from core callback. The libgimp side adapts by discarding unneeded attributes. In the future, core (running choosers for plugins) can be simplified also. Fix gimp_prop_chooser_brush_new same as other resources. Finish changes, and clean style. Annotations
584 lines
15 KiB
Makefile
584 lines
15 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
if PLATFORM_OSX
|
|
xobjective_c = "-xobjective-c"
|
|
xobjective_cxx = "-xobjective-c++"
|
|
xnone = "-xnone"
|
|
endif
|
|
|
|
AM_CPPFLAGS = \
|
|
-DGIMPDIR=\""$(gimpdir)"\" \
|
|
-DGIMP_VERSION=\"$(GIMP_VERSION)\" \
|
|
-DGIMP_APP_VERSION=\"$(GIMP_APP_VERSION)\" \
|
|
-DGIMP_USER_VERSION=\"$(GIMP_USER_VERSION)\" \
|
|
-DG_LOG_DOMAIN=\"Gimp-Core\" \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/app \
|
|
-I$(top_srcdir)/app \
|
|
$(APPSTREAM_GLIB_CFLAGS) \
|
|
$(CAIRO_CFLAGS) \
|
|
$(GEGL_CFLAGS) \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
$(LIBMYPAINT_CFLAGS) \
|
|
$(MYPAINT_BRUSHES_CFLAGS) \
|
|
$(GEXIV2_CFLAGS) \
|
|
$(LIBUNWIND_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
AM_CFLAGS = \
|
|
$(xobjective_c)
|
|
|
|
AM_CXXFLAGS = \
|
|
$(xobjective_cxx)
|
|
|
|
AM_LDFLAGS = \
|
|
$(xnone)
|
|
|
|
noinst_LIBRARIES = libappcore.a
|
|
|
|
libappcore_a_sources = \
|
|
core-enums.h \
|
|
core-types.h \
|
|
gimp.c \
|
|
gimp.h \
|
|
gimp-atomic.c \
|
|
gimp-atomic.h \
|
|
gimp-batch.c \
|
|
gimp-batch.h \
|
|
gimp-cairo.c \
|
|
gimp-cairo.h \
|
|
gimp-contexts.c \
|
|
gimp-contexts.h \
|
|
gimp-data-factories.c \
|
|
gimp-data-factories.h \
|
|
gimp-edit.c \
|
|
gimp-edit.h \
|
|
gimp-filter-history.c \
|
|
gimp-filter-history.h \
|
|
gimp-gradients.c \
|
|
gimp-gradients.h \
|
|
gimp-gui.c \
|
|
gimp-gui.h \
|
|
gimp-internal-data.c \
|
|
gimp-internal-data.h \
|
|
gimp-memsize.c \
|
|
gimp-memsize.h \
|
|
gimp-modules.c \
|
|
gimp-modules.h \
|
|
gimp-palettes.c \
|
|
gimp-palettes.h \
|
|
gimp-parallel.cc \
|
|
gimp-parallel.h \
|
|
gimp-parasites.c \
|
|
gimp-parasites.h \
|
|
gimp-spawn.c \
|
|
gimp-spawn.h \
|
|
gimp-tags.c \
|
|
gimp-tags.h \
|
|
gimp-templates.c \
|
|
gimp-templates.h \
|
|
gimp-transform-resize.c \
|
|
gimp-transform-resize.h \
|
|
gimp-transform-3d-utils.c \
|
|
gimp-transform-3d-utils.h \
|
|
gimp-transform-utils.c \
|
|
gimp-transform-utils.h \
|
|
gimp-units.c \
|
|
gimp-units.h \
|
|
gimp-user-install.c \
|
|
gimp-user-install.h \
|
|
gimp-utils.c \
|
|
gimp-utils.h \
|
|
gimpasync.c \
|
|
gimpasync.h \
|
|
gimpasyncset.c \
|
|
gimpasyncset.h \
|
|
gimpauxitem.c \
|
|
gimpauxitem.h \
|
|
gimpauxitemundo.c \
|
|
gimpauxitemundo.h \
|
|
gimpbacktrace.h \
|
|
gimpbacktrace-backend.h \
|
|
gimpbacktrace-linux.c \
|
|
gimpbacktrace-none.c \
|
|
gimpbacktrace-windows.c \
|
|
gimpbezierdesc.h \
|
|
gimpbezierdesc.c \
|
|
gimpboundary.c \
|
|
gimpboundary.h \
|
|
gimpbrush.c \
|
|
gimpbrush.h \
|
|
gimpbrush-boundary.c \
|
|
gimpbrush-boundary.h \
|
|
gimpbrush-header.h \
|
|
gimpbrush-load.c \
|
|
gimpbrush-load.h \
|
|
gimpbrush-mipmap.cc \
|
|
gimpbrush-mipmap.h \
|
|
gimpbrush-private.h \
|
|
gimpbrush-save.c \
|
|
gimpbrush-save.h \
|
|
gimpbrush-transform.cc \
|
|
gimpbrush-transform.h \
|
|
gimpbrushcache.c \
|
|
gimpbrushcache.h \
|
|
gimpbrushclipboard.c \
|
|
gimpbrushclipboard.h \
|
|
gimpbrushgenerated.c \
|
|
gimpbrushgenerated.h \
|
|
gimpbrushgenerated-load.c \
|
|
gimpbrushgenerated-load.h \
|
|
gimpbrushgenerated-save.c \
|
|
gimpbrushgenerated-save.h \
|
|
gimpbrushpipe.c \
|
|
gimpbrushpipe.h \
|
|
gimpbrushpipe-load.c \
|
|
gimpbrushpipe-load.h \
|
|
gimpbrushpipe-save.c \
|
|
gimpbrushpipe-save.h \
|
|
gimpbuffer.c \
|
|
gimpbuffer.h \
|
|
gimpcancelable.c \
|
|
gimpcancelable.h \
|
|
gimpchannel.c \
|
|
gimpchannel.h \
|
|
gimpchannel-combine.c \
|
|
gimpchannel-combine.h \
|
|
gimpchannel-select.c \
|
|
gimpchannel-select.h \
|
|
gimpchannelpropundo.c \
|
|
gimpchannelpropundo.h \
|
|
gimpchannelundo.c \
|
|
gimpchannelundo.h \
|
|
gimpchunkiterator.c \
|
|
gimpchunkiterator.h \
|
|
gimpcontainer.c \
|
|
gimpcontainer.h \
|
|
gimpcontainer-filter.c \
|
|
gimpcontainer-filter.h \
|
|
gimpcontext.c \
|
|
gimpcontext.h \
|
|
gimpcoords.c \
|
|
gimpcoords.h \
|
|
gimpcoords-interpolate.c \
|
|
gimpcoords-interpolate.h \
|
|
gimpcurve.c \
|
|
gimpcurve.h \
|
|
gimpcurve-load.c \
|
|
gimpcurve-load.h \
|
|
gimpcurve-map.c \
|
|
gimpcurve-map.h \
|
|
gimpcurve-save.c \
|
|
gimpcurve-save.h \
|
|
gimpdashpattern.c \
|
|
gimpdashpattern.h \
|
|
gimpdata.c \
|
|
gimpdata.h \
|
|
gimpdatafactory.c \
|
|
gimpdatafactory.h \
|
|
gimpdataloaderfactory.c \
|
|
gimpdataloaderfactory.h \
|
|
gimpdisplay.c \
|
|
gimpdisplay.h \
|
|
gimpdocumentlist.c \
|
|
gimpdocumentlist.h \
|
|
gimpdrawable.c \
|
|
gimpdrawable.h \
|
|
gimpdrawable-bucket-fill.c \
|
|
gimpdrawable-bucket-fill.h \
|
|
gimpdrawable-combine.c \
|
|
gimpdrawable-combine.h \
|
|
gimpdrawable-edit.c \
|
|
gimpdrawable-edit.h \
|
|
gimpdrawable-equalize.c \
|
|
gimpdrawable-equalize.h \
|
|
gimpdrawable-fill.c \
|
|
gimpdrawable-fill.h \
|
|
gimpdrawable-filters.c \
|
|
gimpdrawable-filters.h \
|
|
gimpdrawable-floating-selection.c \
|
|
gimpdrawable-floating-selection.h \
|
|
gimpdrawable-foreground-extract.c \
|
|
gimpdrawable-foreground-extract.h \
|
|
gimpdrawable-gradient.c \
|
|
gimpdrawable-gradient.h \
|
|
gimpdrawable-histogram.c \
|
|
gimpdrawable-histogram.h \
|
|
gimpdrawable-levels.c \
|
|
gimpdrawable-levels.h \
|
|
gimpdrawable-offset.c \
|
|
gimpdrawable-offset.h \
|
|
gimpdrawable-operation.c \
|
|
gimpdrawable-operation.h \
|
|
gimpdrawable-preview.c \
|
|
gimpdrawable-preview.h \
|
|
gimpdrawable-private.h \
|
|
gimpdrawable-shadow.c \
|
|
gimpdrawable-shadow.h \
|
|
gimpdrawable-stroke.c \
|
|
gimpdrawable-stroke.h \
|
|
gimpdrawable-transform.c \
|
|
gimpdrawable-transform.h \
|
|
gimpdrawablefilter.c \
|
|
gimpdrawablefilter.h \
|
|
gimpdrawablemodundo.c \
|
|
gimpdrawablemodundo.h \
|
|
gimpdrawablepropundo.c \
|
|
gimpdrawablepropundo.h \
|
|
gimpdrawablestack.c \
|
|
gimpdrawablestack.h \
|
|
gimpdrawableundo.c \
|
|
gimpdrawableundo.h \
|
|
gimpdynamics.c \
|
|
gimpdynamics.h \
|
|
gimpdynamics-load.c \
|
|
gimpdynamics-load.h \
|
|
gimpdynamics-save.c \
|
|
gimpdynamics-save.h \
|
|
gimpdynamicsoutput.c \
|
|
gimpdynamicsoutput.h \
|
|
gimperror.c \
|
|
gimperror.h \
|
|
gimpextension.c \
|
|
gimpextension.h \
|
|
gimpextension-error.c \
|
|
gimpextension-error.h \
|
|
gimpextensionmanager.c \
|
|
gimpextensionmanager.h \
|
|
gimpfilloptions.c \
|
|
gimpfilloptions.h \
|
|
gimpfilter.c \
|
|
gimpfilter.h \
|
|
gimpfilteredcontainer.c \
|
|
gimpfilteredcontainer.h \
|
|
gimpfilterstack.c \
|
|
gimpfilterstack.h \
|
|
gimpfloatingselectionundo.c \
|
|
gimpfloatingselectionundo.h \
|
|
gimpgradient.c \
|
|
gimpgradient.h \
|
|
gimpgradient-load.c \
|
|
gimpgradient-load.h \
|
|
gimpgradient-save.c \
|
|
gimpgradient-save.h \
|
|
gimpgrid.c \
|
|
gimpgrid.h \
|
|
gimpgrouplayer.c \
|
|
gimpgrouplayer.h \
|
|
gimpgrouplayerundo.c \
|
|
gimpgrouplayerundo.h \
|
|
gimpguide.c \
|
|
gimpguide.h \
|
|
gimpguideundo.c \
|
|
gimpguideundo.h \
|
|
gimphistogram.c \
|
|
gimphistogram.h \
|
|
gimpidtable.c \
|
|
gimpidtable.h \
|
|
gimpimage.c \
|
|
gimpimage.h \
|
|
gimpimage-arrange.c \
|
|
gimpimage-arrange.h \
|
|
gimpimage-color-profile.c \
|
|
gimpimage-color-profile.h \
|
|
gimpimage-colormap.c \
|
|
gimpimage-colormap.h \
|
|
gimpimage-convert-indexed.c \
|
|
gimpimage-convert-indexed.h \
|
|
gimpimage-convert-fsdither.h \
|
|
gimpimage-convert-data.h \
|
|
gimpimage-convert-precision.c \
|
|
gimpimage-convert-precision.h \
|
|
gimpimage-convert-type.c \
|
|
gimpimage-convert-type.h \
|
|
gimpimage-crop.c \
|
|
gimpimage-crop.h \
|
|
gimpimage-duplicate.c \
|
|
gimpimage-duplicate.h \
|
|
gimpimage-flip.c \
|
|
gimpimage-flip.h \
|
|
gimpimage-grid.h \
|
|
gimpimage-grid.c \
|
|
gimpimage-guides.c \
|
|
gimpimage-guides.h \
|
|
gimpimage-item-list.c \
|
|
gimpimage-item-list.h \
|
|
gimpimage-merge.c \
|
|
gimpimage-merge.h \
|
|
gimpimage-metadata.c \
|
|
gimpimage-metadata.h \
|
|
gimpimage-new.c \
|
|
gimpimage-new.h \
|
|
gimpimage-pick-color.c \
|
|
gimpimage-pick-color.h \
|
|
gimpimage-pick-item.c \
|
|
gimpimage-pick-item.h \
|
|
gimpimage-preview.c \
|
|
gimpimage-preview.h \
|
|
gimpimage-private.h \
|
|
gimpimage-quick-mask.c \
|
|
gimpimage-quick-mask.h \
|
|
gimpimage-resize.c \
|
|
gimpimage-resize.h \
|
|
gimpimage-rotate.c \
|
|
gimpimage-rotate.h \
|
|
gimpimage-sample-points.c \
|
|
gimpimage-sample-points.h \
|
|
gimpimage-scale.c \
|
|
gimpimage-scale.h \
|
|
gimpimage-snap.c \
|
|
gimpimage-snap.h \
|
|
gimpimage-symmetry.c \
|
|
gimpimage-symmetry.h \
|
|
gimpimage-transform.c \
|
|
gimpimage-transform.h \
|
|
gimpimage-undo.c \
|
|
gimpimage-undo.h \
|
|
gimpimage-undo-push.c \
|
|
gimpimage-undo-push.h \
|
|
gimpimageproxy.c \
|
|
gimpimageproxy.h \
|
|
gimpimageundo.c \
|
|
gimpimageundo.h \
|
|
gimpimagefile.c \
|
|
gimpimagefile.h \
|
|
gimpitem.c \
|
|
gimpitem.h \
|
|
gimpitem-exclusive.c \
|
|
gimpitem-exclusive.h \
|
|
gimpitem-preview.c \
|
|
gimpitem-preview.h \
|
|
gimpitemlist.c \
|
|
gimpitemlist.h \
|
|
gimpitempropundo.c \
|
|
gimpitempropundo.h \
|
|
gimpitemstack.c \
|
|
gimpitemstack.h \
|
|
gimpitemtree.c \
|
|
gimpitemtree.h \
|
|
gimpitemundo.c \
|
|
gimpitemundo.h \
|
|
gimplayer.c \
|
|
gimplayer.h \
|
|
gimplayer-floating-selection.c \
|
|
gimplayer-floating-selection.h \
|
|
gimplayer-new.c \
|
|
gimplayer-new.h \
|
|
gimplayermask.c \
|
|
gimplayermask.h \
|
|
gimplayermaskpropundo.c \
|
|
gimplayermaskpropundo.h \
|
|
gimplayermaskundo.c \
|
|
gimplayermaskundo.h \
|
|
gimplayerpropundo.c \
|
|
gimplayerpropundo.h \
|
|
gimplayerstack.c \
|
|
gimplayerstack.h \
|
|
gimplayerundo.c \
|
|
gimplayerundo.h \
|
|
gimplineart.c \
|
|
gimplineart.h \
|
|
gimplist.c \
|
|
gimplist.h \
|
|
gimpmaskundo.c \
|
|
gimpmaskundo.h \
|
|
gimpmybrush.c \
|
|
gimpmybrush.h \
|
|
gimpmybrush-load.c \
|
|
gimpmybrush-load.h \
|
|
gimpmybrush-private.h \
|
|
gimpobject.c \
|
|
gimpobject.h \
|
|
gimpobjectqueue.c \
|
|
gimpobjectqueue.h \
|
|
gimppaintinfo.c \
|
|
gimppaintinfo.h \
|
|
gimppattern.c \
|
|
gimppattern.h \
|
|
gimppattern-header.h \
|
|
gimppattern-load.c \
|
|
gimppattern-load.h \
|
|
gimppattern-save.c \
|
|
gimppattern-save.h \
|
|
gimppatternclipboard.c \
|
|
gimppatternclipboard.h \
|
|
gimppalette.c \
|
|
gimppalette.h \
|
|
gimppalette-import.c \
|
|
gimppalette-import.h \
|
|
gimppalette-load.c \
|
|
gimppalette-load.h \
|
|
gimppalette-save.c \
|
|
gimppalette-save.h \
|
|
gimppalettemru.c \
|
|
gimppalettemru.h \
|
|
gimpparamspecs.c \
|
|
gimpparamspecs.h \
|
|
gimpparamspecs-desc.c \
|
|
gimpparamspecs-desc.h \
|
|
gimpparasitelist.c \
|
|
gimpparasitelist.h \
|
|
gimppdbprogress.c \
|
|
gimppdbprogress.h \
|
|
gimppickable.c \
|
|
gimppickable.h \
|
|
gimppickable-auto-shrink.c \
|
|
gimppickable-auto-shrink.h \
|
|
gimppickable-contiguous-region.cc \
|
|
gimppickable-contiguous-region.h \
|
|
gimpprogress.c \
|
|
gimpprogress.h \
|
|
gimpprojectable.c \
|
|
gimpprojectable.h \
|
|
gimpprojection.c \
|
|
gimpprojection.h \
|
|
gimpresource.c \
|
|
gimpresource.h \
|
|
gimpsamplepoint.c \
|
|
gimpsamplepoint.h \
|
|
gimpsamplepointundo.c \
|
|
gimpsamplepointundo.h \
|
|
gimpscanconvert.c \
|
|
gimpscanconvert.h \
|
|
gimpselection.c \
|
|
gimpselection.h \
|
|
gimpsettings.c \
|
|
gimpsettings.h \
|
|
gimpstrokeoptions.c \
|
|
gimpstrokeoptions.h \
|
|
gimpsubprogress.c \
|
|
gimpsubprogress.h \
|
|
gimpsymmetry.c \
|
|
gimpsymmetry.h \
|
|
gimpsymmetry-mandala.c \
|
|
gimpsymmetry-mandala.h \
|
|
gimpsymmetry-mirror.c \
|
|
gimpsymmetry-mirror.h \
|
|
gimpsymmetry-tiling.c \
|
|
gimpsymmetry-tiling.h \
|
|
gimptag.c \
|
|
gimptag.h \
|
|
gimptagcache.c \
|
|
gimptagcache.h \
|
|
gimptagged.c \
|
|
gimptagged.h \
|
|
gimptaggedcontainer.c \
|
|
gimptaggedcontainer.h \
|
|
gimptempbuf.c \
|
|
gimptempbuf.h \
|
|
gimptemplate.c \
|
|
gimptemplate.h \
|
|
gimptilehandlerprojectable.c \
|
|
gimptilehandlerprojectable.h \
|
|
gimptoolgroup.c \
|
|
gimptoolgroup.h \
|
|
gimptoolinfo.c \
|
|
gimptoolinfo.h \
|
|
gimptoolitem.c \
|
|
gimptoolitem.h \
|
|
gimptooloptions.c \
|
|
gimptooloptions.h \
|
|
gimptoolpreset.c \
|
|
gimptoolpreset.h \
|
|
gimptoolpreset-load.c \
|
|
gimptoolpreset-load.h \
|
|
gimptoolpreset-save.c \
|
|
gimptoolpreset-save.h \
|
|
gimptreehandler.c \
|
|
gimptreehandler.h \
|
|
gimptreeproxy.c \
|
|
gimptreeproxy.h \
|
|
gimptriviallycancelablewaitable.c \
|
|
gimptriviallycancelablewaitable.h \
|
|
gimpuncancelablewaitable.c \
|
|
gimpuncancelablewaitable.h \
|
|
gimpunit.c \
|
|
gimpunit.h \
|
|
gimpundo.c \
|
|
gimpundo.h \
|
|
gimpundostack.c \
|
|
gimpundostack.h \
|
|
gimpviewable.c \
|
|
gimpviewable.h \
|
|
gimpwaitable.c \
|
|
gimpwaitable.h
|
|
|
|
libappcore_a_built_sources = \
|
|
gimp-core-pixbufs.c \
|
|
gimp-core-pixbufs.h \
|
|
core-enums.c \
|
|
gimpmarshal.c \
|
|
gimpmarshal.h
|
|
|
|
libappcore_a_extra_sources = \
|
|
gimpmarshal.list
|
|
|
|
libappcore_a_SOURCES = $(libappcore_a_built_sources) $(libappcore_a_sources)
|
|
|
|
BUILT_SOURCES = \
|
|
$(libappcore_a_built_sources)
|
|
|
|
EXTRA_DIST = \
|
|
$(libappcore_a_extra_sources)
|
|
|
|
#
|
|
# rules to generate built sources
|
|
#
|
|
# setup autogeneration dependencies
|
|
gen_sources = \
|
|
gimp-core-pixbufs.c \
|
|
gimp-core-pixbufs.h \
|
|
stamp-core-enums.h \
|
|
xgen-gmh \
|
|
xgen-gmc \
|
|
xgen-cec
|
|
|
|
CLEANFILES = $(gen_sources)
|
|
|
|
gimpmarshal.h: $(srcdir)/gimpmarshal.list
|
|
$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=gimp_marshal $(srcdir)/gimpmarshal.list --header >> xgen-gmh \
|
|
&& (cmp -s xgen-gmh $(@F) || cp xgen-gmh $(@F)) \
|
|
&& rm -f xgen-gmh xgen-gmh~
|
|
|
|
gimpmarshal.c: gimpmarshal.h
|
|
$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=gimp_marshal $(srcdir)/gimpmarshal.list --prototypes --body >> xgen-gmc \
|
|
&& cp xgen-gmc $(@F) \
|
|
&& rm -f xgen-gmc xgen-gmc~
|
|
|
|
xgen-cec: $(srcdir)/core-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
--fhead "#include \"stamp-core-enums.h\"\n#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"core-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" \
|
|
$< > $@
|
|
|
|
stamp-core-enums.h: xgen-cec
|
|
echo "/* Generated on `date`. */" > $@
|
|
|
|
# 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)/core-enums.c: xgen-cec stamp-core-enums.h
|
|
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
cp $< $@; \
|
|
else \
|
|
touch $@ 2> /dev/null \
|
|
|| true; \
|
|
fi
|
|
|
|
gimp-core-pixbufs.h: $(top_builddir)/icons/Color/gimp-core-pixbufs.gresource.xml
|
|
$(AM_V_GEN) $(HOST_GLIB_COMPILE_RESOURCES) \
|
|
--sourcedir=$(top_builddir)/icons/Color --generate-header \
|
|
--target=$@ $(top_builddir)/icons/Color/gimp-core-pixbufs.gresource.xml
|
|
|
|
gimp-core-pixbufs.c: gimp-core-pixbufs.h
|
|
$(AM_V_GEN) $(HOST_GLIB_COMPILE_RESOURCES) \
|
|
--sourcedir=$(top_builddir)/icons/Color --generate-source \
|
|
--target=$@ $(top_builddir)/icons/Color/gimp-core-pixbufs.gresource.xml
|