Gimp/app/propgui/Makefile.am
Ell d4d8dbbc1b app: add custom gui for gegl:color-to-alpha(-plus)
Add a specialized propgui constructor for gegl:color-to-alpha-plus.
This op is currently in the workshop, but is set to be merged with
the existing gegl:color-to-alpha, so we omit the '-plus' from file-
and function-names.

The new op adds a pair of properties to control the radii, relative
to the selected color, below which colors become fully transparent,
and above which colors remain fully opaque.  Allow these properties
to be set by picking a color from the image, and calculating the
radius accordingly.
2017-10-16 12:38:38 -04:00

45 lines
1.2 KiB
Makefile

## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-DISO_CODES_LOCATION=\"$(ISO_CODES_LOCATION)\" \
-DISO_CODES_LOCALEDIR=\"$(ISO_CODES_LOCALEDIR)\" \
-DG_LOG_DOMAIN=\"Gimp-PropGUI\" \
-I$(top_builddir) \
-I$(top_srcdir) \
-I$(top_builddir)/app \
-I$(top_srcdir)/app \
$(GEGL_CFLAGS) \
$(GTK_CFLAGS) \
-I$(includedir)
noinst_LIBRARIES = libapppropgui.a
libapppropgui_a_SOURCES = \
propgui-types.h \
\
gimppropgui.c \
gimppropgui.h \
gimppropgui-channel-mixer.c \
gimppropgui-channel-mixer.h \
gimppropgui-color-balance.c \
gimppropgui-color-balance.h \
gimppropgui-color-rotate.c \
gimppropgui-color-rotate.h \
gimppropgui-color-to-alpha.c \
gimppropgui-color-to-alpha.h \
gimppropgui-convolution-matrix.c \
gimppropgui-convolution-matrix.h \
gimppropgui-diffraction-patterns.c \
gimppropgui-diffraction-patterns.h \
gimppropgui-eval.c \
gimppropgui-eval.h \
gimppropgui-generic.c \
gimppropgui-generic.h \
gimppropgui-hue-saturation.c \
gimppropgui-hue-saturation.h \
gimppropgui-spiral.c \
gimppropgui-spiral.h \
gimppropgui-supernova.c \
gimppropgui-supernova.h \
gimppropgui-utils.c \
gimppropgui-utils.h