2001-11-27 11:52:11 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
noinst_LIBRARIES = libappconfig.a
|
|
|
|
|
|
|
|
libappconfig_a_SOURCES = @STRIP_BEGIN@ \
|
|
|
|
gimpconfig.c \
|
|
|
|
gimpconfig.h \
|
|
|
|
gimpconfig-deserialize.c \
|
|
|
|
gimpconfig-deserialize.h \
|
2001-12-08 11:35:38 +08:00
|
|
|
gimpconfig-params.c \
|
|
|
|
gimpconfig-params.h \
|
2001-11-27 11:52:11 +08:00
|
|
|
gimpconfig-serialize.c \
|
|
|
|
gimpconfig-serialize.h \
|
2001-12-11 02:31:35 +08:00
|
|
|
gimpconfig-substitute.c \
|
|
|
|
gimpconfig-substitute.h \
|
|
|
|
gimpconfig-serialize.h \
|
2001-12-08 11:35:38 +08:00
|
|
|
gimpconfig-types.c \
|
|
|
|
gimpconfig-types.h \
|
2001-12-18 20:39:45 +08:00
|
|
|
gimpconfig-utils.c \
|
|
|
|
gimpconfig-utils.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 \
|
2001-12-19 03:23:26 +08:00
|
|
|
gimprc.c \
|
|
|
|
gimprc.h \
|
2002-03-28 07:15:00 +08:00
|
|
|
gimpscanner.c \
|
|
|
|
gimpscanner.h \
|
2001-11-27 11:52:11 +08:00
|
|
|
@STRIP_END@
|
|
|
|
|
|
|
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
|
|
|
-DG_LOG_DOMAIN=\"Gimp-Config\" \
|
|
|
|
@GIMP_THREAD_FLAGS@ \
|
|
|
|
@GIMP_MP_FLAGS@ \
|
|
|
|
@STRIP_END@
|
|
|
|
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/app \
|
|
|
|
$(GLIB_CFLAGS) \
|
|
|
|
-I$(includedir) \
|
|
|
|
@STRIP_END@
|
2001-12-10 00:18:15 +08:00
|
|
|
|
2001-12-19 04:40:50 +08:00
|
|
|
|
2001-12-10 00:18:15 +08:00
|
|
|
#
|
2001-12-19 03:23:26 +08:00
|
|
|
# test programs, not to be built by default and never installed
|
2001-12-10 00:18:15 +08:00
|
|
|
#
|
2001-12-19 04:40:50 +08:00
|
|
|
|
|
|
|
TESTS = test-config
|
|
|
|
|
2001-12-19 03:23:26 +08:00
|
|
|
EXTRA_PROGRAMS = test-config
|
2001-12-10 00:18:15 +08:00
|
|
|
|
2001-12-11 23:58:07 +08:00
|
|
|
test_config_DEPENDENCIES = @STRIP_BEGIN@ \
|
|
|
|
libappconfig.a \
|
|
|
|
../base/libappbase.a \
|
|
|
|
../core/libappcore.a \
|
2001-12-19 01:45:29 +08:00
|
|
|
../display/libappdisplay.a \
|
2001-12-11 23:58:07 +08:00
|
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
2001-12-11 02:31:35 +08:00
|
|
|
@STRIP_END@
|
2001-12-10 00:18:15 +08:00
|
|
|
|
2001-12-11 23:58:07 +08:00
|
|
|
test_config_LDADD = @STRIP_BEGIN@ \
|
|
|
|
$(GLIB_LIBS) \
|
|
|
|
$(test_config_DEPENDENCIES) \
|
2001-12-11 02:31:35 +08:00
|
|
|
@STRIP_END@
|