mirror of https://github.com/GNOME/gimp.git
100 lines
2.5 KiB
Makefile
100 lines
2.5 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = \
|
|
layer-modes \
|
|
layer-modes-legacy \
|
|
tests
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Operations\" \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/app \
|
|
-I$(top_srcdir)/app \
|
|
$(CAIRO_CFLAGS) \
|
|
$(GEGL_CFLAGS) \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
noinst_LIBRARIES = \
|
|
libappoperations.a
|
|
|
|
libappoperations_a_SOURCES = \
|
|
operations-types.h \
|
|
gimp-operations.c \
|
|
gimp-operations.h \
|
|
\
|
|
gimpbrightnesscontrastconfig.c \
|
|
gimpbrightnesscontrastconfig.h \
|
|
gimpcageconfig.c \
|
|
gimpcageconfig.h \
|
|
gimpcolorbalanceconfig.c \
|
|
gimpcolorbalanceconfig.h \
|
|
gimpcolorizeconfig.c \
|
|
gimpcolorizeconfig.h \
|
|
gimpcurvesconfig.c \
|
|
gimpcurvesconfig.h \
|
|
gimphuesaturationconfig.c \
|
|
gimphuesaturationconfig.h \
|
|
gimplevelsconfig.c \
|
|
gimplevelsconfig.h \
|
|
\
|
|
gimpoperationblend.c \
|
|
gimpoperationblend.h \
|
|
gimpoperationborder.c \
|
|
gimpoperationborder.h \
|
|
gimpoperationcagecoefcalc.c \
|
|
gimpoperationcagecoefcalc.h \
|
|
gimpoperationcagetransform.c \
|
|
gimpoperationcagetransform.h \
|
|
gimpoperationcomposecrop.c \
|
|
gimpoperationcomposecrop.h \
|
|
gimpoperationequalize.c \
|
|
gimpoperationequalize.h \
|
|
gimpoperationflood.c \
|
|
gimpoperationflood.h \
|
|
gimpoperationgrow.c \
|
|
gimpoperationgrow.h \
|
|
gimpoperationhistogramsink.c \
|
|
gimpoperationhistogramsink.h \
|
|
gimpoperationmaskcomponents.c \
|
|
gimpoperationmaskcomponents.h \
|
|
gimpoperationprofiletransform.c \
|
|
gimpoperationprofiletransform.h \
|
|
gimpoperationscalarmultiply.c \
|
|
gimpoperationscalarmultiply.h \
|
|
gimpoperationsemiflatten.c \
|
|
gimpoperationsemiflatten.h \
|
|
gimpoperationsetalpha.c \
|
|
gimpoperationsetalpha.h \
|
|
gimpoperationshapeburst.c \
|
|
gimpoperationshapeburst.h \
|
|
gimpoperationshrink.c \
|
|
gimpoperationshrink.h \
|
|
gimpoperationthresholdalpha.c \
|
|
gimpoperationthresholdalpha.h \
|
|
\
|
|
gimpoperationpointfilter.c \
|
|
gimpoperationpointfilter.h \
|
|
gimpoperationbrightnesscontrast.c \
|
|
gimpoperationbrightnesscontrast.h \
|
|
gimpoperationcolorbalance.c \
|
|
gimpoperationcolorbalance.h \
|
|
gimpoperationcolorize.c \
|
|
gimpoperationcolorize.h \
|
|
gimpoperationcurves.c \
|
|
gimpoperationcurves.h \
|
|
gimpoperationdesaturate.c \
|
|
gimpoperationdesaturate.h \
|
|
gimpoperationhuesaturation.c \
|
|
gimpoperationhuesaturation.h \
|
|
gimpoperationlevels.c \
|
|
gimpoperationlevels.h \
|
|
gimpoperationposterize.c \
|
|
gimpoperationposterize.h \
|
|
gimpoperationthreshold.c \
|
|
gimpoperationthreshold.h \
|
|
\
|
|
gimplayermodefunctions.c \
|
|
gimplayermodefunctions.h
|