gimp/app/dialogs/Makefile.am
Sven Neumann b7ad665c28 Applied a patch (with minor modifications) from Karine Delvare that makes
2005-04-16  Sven Neumann  <sven@gimp.org>

	Applied a patch (with minor modifications) from Karine Delvare
	that makes it possible to choose between various ways to remove
	color from a drawable (bug #155507):

	* libgimpbase/gimpbaseenums.h: added new enum GimpDesaturateMode.

	* libgimpbase/gimpbaseenums.c
	* libgimp/gimpenums.c.tail
	* plug-ins/pygimp/gimpenums.py
	* tools/pdbgen/enums.pl: regenerated.

	* app/core/gimpdrawable-desaturate.[ch]: implement other formulas
	to remove colors from a drawable.

	* tools/pdbgen/pdb/color.pdb: let gimp_desaturate() call
	gimp_drawable_desaturate() with GIMP_DESATURATE_LIGHTNESS so that
	it behaves like it always did.

	* app/pdb/color_cmds.c: regenerated.

	* app/dialogs/Makefile.am
	* app/dialogs/desaturate-dialog.[ch]: new files that define a simple
	dialog to choose a mode for desaturation.

	* app/actions/drawable-actions.[ch]: use the new dialog.
2005-04-16 14:51:49 +00:00

105 lines
2.3 KiB
Makefile

## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-DG_LOG_DOMAIN=\"Gimp-Dialogs\" \
@GTHREAD_CFLAGS@
INCLUDES = \
-I$(top_builddir) \
-I$(top_srcdir) \
-I$(top_builddir)/app \
-I$(top_srcdir)/app \
$(GTK_CFLAGS) \
-I$(includedir)
noinst_LIBRARIES = libappdialogs.a
libappdialogs_a_sources = \
dialogs-types.h \
dialogs.c \
dialogs.h \
dialogs-constructors.c \
dialogs-constructors.h \
\
about-dialog.c \
about-dialog.h \
authors.h \
channel-options-dialog.c \
channel-options-dialog.h \
convert-dialog.c \
convert-dialog.h \
desaturate-dialog.c \
desaturate-dialog.h \
file-open-dialog.c \
file-open-dialog.h \
file-open-location-dialog.c \
file-open-location-dialog.h \
file-save-dialog.c \
file-save-dialog.h \
grid-dialog.h \
grid-dialog.c \
image-merge-layers-dialog.c \
image-merge-layers-dialog.h \
image-new-dialog.c \
image-new-dialog.h \
image-properties-dialog.c \
image-properties-dialog.h \
image-scale-dialog.c \
image-scale-dialog.h \
info-dialog.c \
info-dialog.h \
layer-add-mask-dialog.c \
layer-add-mask-dialog.h \
layer-options-dialog.c \
layer-options-dialog.h \
module-dialog.c \
module-dialog.h \
offset-dialog.c \
offset-dialog.h \
palette-import-dialog.c \
palette-import-dialog.h \
preferences-dialog.c \
preferences-dialog.h \
print-size-dialog.c \
print-size-dialog.h \
quit-dialog.c \
quit-dialog.h \
resize-dialog.c \
resize-dialog.h \
resolution-calibrate-dialog.c \
resolution-calibrate-dialog.h \
scale-dialog.c \
scale-dialog.h \
stroke-dialog.c \
stroke-dialog.h \
template-options-dialog.c \
template-options-dialog.h \
tips-dialog.c \
tips-dialog.h \
tips-parser.c \
tips-parser.h \
user-install-dialog.c \
user-install-dialog.h \
vectors-export-dialog.c \
vectors-export-dialog.h \
vectors-import-dialog.c \
vectors-import-dialog.h \
vectors-options-dialog.c \
vectors-options-dialog.h
libappdialogs_a_built_sources = \
authors.h
libappdialogs_a_SOURCES = \
$(libappdialogs_a_built_sources) $(libappdialogs_a_sources)
EXTRA_DIST = \
authors.xsl \
makefile.msc
authors.h: $(top_srcdir)/authors.xml
if HAVE_XSLTPROC
$(XSLTPROC) authors.xsl $< > $(@) || rm -f $(@)
endif