2003-07-09 07:15:16 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-DG_LOG_DOMAIN=\"Gimp-Compositing\" \
|
2003-07-09 18:16:50 +08:00
|
|
|
@GIMP_THREAD_FLAGS@ \
|
2003-07-09 07:15:16 +08:00
|
|
|
@GIMP_MP_FLAGS@
|
|
|
|
|
|
|
|
AM_CCASFLAGS = \
|
|
|
|
-I$(top_builddir) \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/app
|
|
|
|
|
2003-07-09 18:16:50 +08:00
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir)/app \
|
|
|
|
-I$(top_srcdir)/app/composite \
|
|
|
|
$(GLIB_CFLAGS) \
|
|
|
|
-I$(includedir)
|
|
|
|
|
|
|
|
noinst_LIBRARIES = libappcomposite.a
|
|
|
|
|
|
|
|
libappcomposite_a_sources = \
|
|
|
|
gimp-composite.c \
|
|
|
|
gimp-composite.h \
|
2003-07-14 02:03:42 +08:00
|
|
|
gimp-composite-dispatch.c \
|
2003-07-14 18:33:53 +08:00
|
|
|
gimp-composite-generic.c \
|
|
|
|
gimp-composite-generic.h \
|
|
|
|
gimp-composite-mmx.c \
|
|
|
|
gimp-composite-mmx.h \
|
2003-07-18 15:36:55 +08:00
|
|
|
gimp-composite-sse.c \
|
|
|
|
gimp-composite-ssex.h \
|
2003-07-09 18:16:50 +08:00
|
|
|
gimp-composite-util.h
|
|
|
|
|
|
|
|
libappcomposite_a_built_sources = gimp-composite-dispatch.c
|
|
|
|
|
|
|
|
libappcomposite_a_SOURCES = $(libappcomposite_a_built_sources) $(libappcomposite_a_sources)
|
|
|
|
|
2003-07-09 07:15:16 +08:00
|
|
|
|
|
|
|
gimp-composite-dispatch.c: gimp-composite-generic.o make-gimp-composite-dispatch.py
|
|
|
|
./make-gimp-composite-dispatch.py gimp-composite-generic.o > gimp-composite-dispatch.c
|
2003-07-09 19:52:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
make-gimp-composite-dispatch.py \
|
|
|
|
ns
|
|
|
|
|
|
|
|
EXTRA_PROGRAMS = test-composite
|
|
|
|
|
|
|
|
|
|
|
|
#
|
2003-07-13 23:48:41 +08:00
|
|
|
# unit tests and meta tools for GimpComposite
|
2003-07-09 19:52:10 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
TESTS = test-composite
|
|
|
|
|
|
|
|
test_composite_DEPENDENCIES = $(gimpcomposite_dependencies)
|
|
|
|
|
|
|
|
test_composite_LDADD = \
|
|
|
|
libappcomposite.a \
|
|
|
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
|
|
|
$(GLIB_LIBS)
|
|
|
|
|
|
|
|
|
|
|
|
CLEANFILES = $(EXTRA_PROGRAMS)
|