mirror of https://github.com/GNOME/gimp.git
61 lines
1.4 KiB
Makefile
61 lines
1.4 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libappgegl.a
|
|
|
|
libappgegl_a_SOURCES = \
|
|
gegl-types.h \
|
|
gimp-gegl.c \
|
|
gimp-gegl.h \
|
|
gimp-gegl-utils.c \
|
|
gimp-gegl-utils.h \
|
|
\
|
|
gimpbrightnesscontrastconfig.c \
|
|
gimpbrightnesscontrastconfig.h \
|
|
gimpcolorbalanceconfig.c \
|
|
gimpcolorbalanceconfig.h \
|
|
gimpcolorizeconfig.c \
|
|
gimpcolorizeconfig.h \
|
|
gimpcurvesconfig.c \
|
|
gimpcurvesconfig.h \
|
|
gimphuesaturationconfig.c \
|
|
gimphuesaturationconfig.h \
|
|
gimplevelsconfig.c \
|
|
gimplevelsconfig.h \
|
|
gimpposterizeconfig.c \
|
|
gimpposterizeconfig.h \
|
|
gimpthresholdconfig.c \
|
|
gimpthresholdconfig.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 \
|
|
gimpoperationpointfilter.c \
|
|
gimpoperationpointfilter.h \
|
|
gimpoperationposterize.c \
|
|
gimpoperationposterize.h \
|
|
gimpoperationthreshold.c \
|
|
gimpoperationthreshold.h \
|
|
gimpoperationtilesink.c \
|
|
gimpoperationtilesink.h \
|
|
gimpoperationtilesource.c \
|
|
gimpoperationtilesource.h
|
|
|
|
INCLUDES = \
|
|
-I. \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/app \
|
|
-I$(top_srcdir)/app \
|
|
$(GEGL_CFLAGS) \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|