2001-08-17 22:27:31 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
AM_CPPFLAGS = \
|
2001-08-17 22:27:31 +08:00
|
|
|
-DG_LOG_DOMAIN=\"Gimp-Plug-In\" \
|
|
|
|
@GIMP_THREAD_FLAGS@ \
|
2002-06-08 07:00:46 +08:00
|
|
|
@GIMP_MP_FLAGS@
|
2001-08-17 22:27:31 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/app \
|
|
|
|
$(GTK_CFLAGS) \
|
|
|
|
-I$(includedir)
|
2001-12-19 08:13:16 +08:00
|
|
|
|
|
|
|
noinst_LIBRARIES = libappplug-in.a
|
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
libappplug_in_a_SOURCES = \
|
2002-03-21 01:46:13 +08:00
|
|
|
plug-in-types.h \
|
|
|
|
plug-in.c \
|
|
|
|
plug-in.h \
|
|
|
|
plug-ins.c \
|
|
|
|
plug-ins.h \
|
2003-02-11 09:21:21 +08:00
|
|
|
plug-in-debug.c \
|
|
|
|
plug-in-debug.h \
|
2002-03-21 01:46:13 +08:00
|
|
|
plug-in-def.c \
|
|
|
|
plug-in-def.h \
|
2003-01-30 19:20:12 +08:00
|
|
|
plug-in-message.c \
|
|
|
|
plug-in-message.h \
|
2002-03-21 01:46:13 +08:00
|
|
|
plug-in-params.c \
|
|
|
|
plug-in-params.h \
|
|
|
|
plug-in-proc.c \
|
|
|
|
plug-in-proc.h \
|
|
|
|
plug-in-progress.c \
|
|
|
|
plug-in-progress.h \
|
|
|
|
plug-in-rc.c \
|
2003-01-30 19:20:12 +08:00
|
|
|
plug-in-rc.h \
|
|
|
|
plug-in-run.c \
|
|
|
|
plug-in-run.h \
|
|
|
|
plug-in-shm.c \
|
|
|
|
plug-in-shm.h
|