2001-11-27 11:52:11 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2004-01-22 11:51:46 +08:00
|
|
|
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
|
|
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
|
|
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
|
|
|
|
2001-11-27 11:52:11 +08:00
|
|
|
noinst_LIBRARIES = libappconfig.a
|
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
libappconfig_a_SOURCES = \
|
2002-11-19 04:50:31 +08:00
|
|
|
config-types.h \
|
2001-11-27 11:52:11 +08:00
|
|
|
gimpconfig.c \
|
|
|
|
gimpconfig.h \
|
|
|
|
gimpconfig-deserialize.c \
|
|
|
|
gimpconfig-deserialize.h \
|
2003-10-14 06:55:25 +08:00
|
|
|
gimpconfig-dump.c \
|
|
|
|
gimpconfig-dump.h \
|
2003-07-24 22:14:23 +08:00
|
|
|
gimpconfig-error.c \
|
|
|
|
gimpconfig-error.h \
|
2005-01-25 06:41:24 +08:00
|
|
|
gimpconfig-file.c \
|
|
|
|
gimpconfig-file.h \
|
2001-12-08 11:35:38 +08:00
|
|
|
gimpconfig-params.h \
|
2002-12-30 02:58:24 +08:00
|
|
|
gimpconfig-path.c \
|
|
|
|
gimpconfig-path.h \
|
2001-11-27 11:52:11 +08:00
|
|
|
gimpconfig-serialize.c \
|
|
|
|
gimpconfig-serialize.h \
|
2001-12-11 02:31:35 +08:00
|
|
|
gimpconfig-serialize.h \
|
2001-12-18 20:39:45 +08:00
|
|
|
gimpconfig-utils.c \
|
|
|
|
gimpconfig-utils.h \
|
2003-03-06 04:21:50 +08:00
|
|
|
gimpconfigwriter.c \
|
|
|
|
gimpconfigwriter.h \
|
2001-12-08 00:10:53 +08:00
|
|
|
gimpbaseconfig.c \
|
|
|
|
gimpbaseconfig.h \
|
2001-12-11 04:43:51 +08:00
|
|
|
gimpcoreconfig.c \
|
|
|
|
gimpcoreconfig.h \
|
2001-12-18 20:39:45 +08:00
|
|
|
gimpdisplayconfig.c \
|
|
|
|
gimpdisplayconfig.h \
|
2001-12-17 05:34:05 +08:00
|
|
|
gimpguiconfig.c \
|
|
|
|
gimpguiconfig.h \
|
2002-12-30 07:23:35 +08:00
|
|
|
gimppluginconfig.c \
|
|
|
|
gimppluginconfig.h \
|
2001-12-19 03:23:26 +08:00
|
|
|
gimprc.c \
|
|
|
|
gimprc.h \
|
2002-12-20 22:36:08 +08:00
|
|
|
gimprc-blurbs.h \
|
2005-01-25 06:05:02 +08:00
|
|
|
gimprc-deserialize.c \
|
|
|
|
gimprc-deserialize.h \
|
|
|
|
gimprc-serialize.c \
|
|
|
|
gimprc-serialize.h \
|
|
|
|
gimprc-unknown.c \
|
|
|
|
gimprc-unknown.h \
|
2005-01-25 06:41:24 +08:00
|
|
|
gimprc-utils.c \
|
|
|
|
gimprc-utils.h \
|
2002-03-28 07:15:00 +08:00
|
|
|
gimpscanner.c \
|
2003-09-15 23:24:52 +08:00
|
|
|
gimpscanner.h \
|
|
|
|
gimpxmlparser.c \
|
|
|
|
gimpxmlparser.h
|
2001-11-27 11:52:11 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
AM_CPPFLAGS = \
|
2001-11-27 11:52:11 +08:00
|
|
|
-DG_LOG_DOMAIN=\"Gimp-Config\" \
|
|
|
|
@GIMP_THREAD_FLAGS@ \
|
2002-06-08 07:00:46 +08:00
|
|
|
@GIMP_MP_FLAGS@
|
2001-11-27 11:52:11 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/app \
|
|
|
|
$(GLIB_CFLAGS) \
|
2003-10-14 23:20:59 +08:00
|
|
|
$(GDK_PIXBUF_CFLAGS) \
|
2002-06-08 07:00:46 +08:00
|
|
|
-I$(includedir)
|
2001-12-10 00:18:15 +08:00
|
|
|
|
2001-12-19 04:40:50 +08:00
|
|
|
|
2003-10-14 06:55:25 +08:00
|
|
|
EXTRA_PROGRAMS = test-config
|
2003-01-11 09:31:22 +08:00
|
|
|
|
2003-12-13 09:35:19 +08:00
|
|
|
EXTRA_DIST = makefile.msc
|
|
|
|
|
2003-01-11 09:31:22 +08:00
|
|
|
#
|
|
|
|
# unit tests for the GimpConfig system
|
|
|
|
#
|
|
|
|
|
2002-11-28 08:59:53 +08:00
|
|
|
TESTS = test-config
|
|
|
|
|
2003-10-13 00:46:50 +08:00
|
|
|
test_config_DEPENDENCIES = $(gimpconfig_libs)
|
2002-11-28 08:59:53 +08:00
|
|
|
|
2003-10-14 06:55:25 +08:00
|
|
|
test_config_LDADD = \
|
2004-01-22 11:51:46 +08:00
|
|
|
../base/libappbase.a \
|
|
|
|
../core/libappcore.a \
|
|
|
|
libappconfig.a \
|
|
|
|
$(libgimpcolor) \
|
|
|
|
$(libgimpmath) \
|
|
|
|
$(libgimpbase) \
|
2003-10-14 06:55:25 +08:00
|
|
|
$(GLIB_LIBS)
|
2003-01-26 04:29:42 +08:00
|
|
|
|
|
|
|
|
2003-10-14 06:55:25 +08:00
|
|
|
CLEANFILES = $(EXTRA_PROGRAMS) foorc
|