2008-10-13 Sven Neumann <sven@gimp.org> Bug 547967 – Improve app/paint-funcs/ maintainability Applied patch from Luidnel Maignan that splits the legacy code for layer modes into new files. * app/paint-funcs/Makefile.am * app/paint-funcs/layer-modes.[ch] * app/paint-funcs/paint-funcs-utils.h: new files with code taken from ... * app/paint-funcs/paint-funcs-generic.h * app/paint-funcs/paint-funcs.c: ... these two files. svn path=/trunk/; revision=27268
36 lines
694 B
Makefile
36 lines
694 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Paint-Funcs\"
|
|
|
|
AM_CCASFLAGS = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app
|
|
|
|
INCLUDES = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/app \
|
|
-I$(top_srcdir)/app \
|
|
$(GLIB_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
noinst_LIBRARIES = libapppaint-funcs.a
|
|
|
|
libapppaint_funcs_a_SOURCES = \
|
|
layer-modes.c \
|
|
layer-modes.h \
|
|
paint-funcs.c \
|
|
paint-funcs.h \
|
|
paint-funcs-generic.h \
|
|
paint-funcs-types.h \
|
|
paint-funcs-utils.h \
|
|
reduce-region.c \
|
|
reduce-region.h \
|
|
scale-region.c \
|
|
scale-region.h \
|
|
subsample-region.c \
|
|
subsample-region.h
|
|
|
|
EXTRA_DIST = makefile.msc
|