2001-11-27 11:52:11 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
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 \
|
2001-12-08 11:35:38 +08:00
|
|
|
gimpconfig-params.c \
|
|
|
|
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-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 \
|
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 \
|
2002-03-28 07:15:00 +08:00
|
|
|
gimpscanner.c \
|
2002-06-08 07:00:46 +08:00
|
|
|
gimpscanner.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) \
|
|
|
|
-I$(includedir)
|
2001-12-10 00:18:15 +08:00
|
|
|
|
2001-12-19 04:40:50 +08:00
|
|
|
|
2002-11-28 08:59:53 +08:00
|
|
|
gimpconfig_libs = \
|
2001-12-11 23:58:07 +08:00
|
|
|
libappconfig.a \
|
|
|
|
../base/libappbase.a \
|
|
|
|
../core/libappcore.a \
|
2001-12-19 01:45:29 +08:00
|
|
|
../display/libappdisplay.a \
|
2002-05-06 06:11:34 +08:00
|
|
|
../widgets/libappwidgets.a \
|
2001-12-11 23:58:07 +08:00
|
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
2003-07-21 08:04:22 +08:00
|
|
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
|
|
|
$(top_builddir)/libgimpmath/libgimpmath-$(LT_RELEASE).la
|
2001-12-10 00:18:15 +08:00
|
|
|
|
2002-11-28 08:59:53 +08:00
|
|
|
|
2003-01-11 10:48:38 +08:00
|
|
|
|
|
|
|
EXTRA_PROGRAMS = gimpconfig-dump test-config
|
|
|
|
|
|
|
|
|
2002-11-28 08:59:53 +08:00
|
|
|
#
|
2003-01-11 09:31:22 +08:00
|
|
|
# GimpConfig dump utility that generates a system gimprc and the manpage
|
2002-11-28 08:59:53 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
gimpconfig_dump_SOURCES = gimpconfig-dump.c
|
|
|
|
|
|
|
|
gimpconfig_dump_LDADD = $(GLIB_LIBS) $(gimpconfig_libs)
|
|
|
|
|
2003-01-11 10:48:38 +08:00
|
|
|
dump: gimpconfig-dump
|
|
|
|
./$<
|
|
|
|
|
|
|
|
gimprc: gimpconfig-dump
|
2003-01-26 04:29:42 +08:00
|
|
|
./$< --system-gimprc > gimprc
|
2003-01-11 10:48:38 +08:00
|
|
|
|
|
|
|
man: gimpconfig-dump
|
2003-05-24 01:28:07 +08:00
|
|
|
./$< --man-page > gimprc-$(LT_RELEASE).5.in
|
2003-01-11 10:48:38 +08:00
|
|
|
|
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
|
|
|
|
|
|
|
|
test_config_DEPENDENCIES = $(gimpconfig_dependencies)
|
|
|
|
|
|
|
|
test_config_LDADD = $(GLIB_LIBS) $(gimpconfig_libs)
|
2003-01-11 10:48:38 +08:00
|
|
|
|
|
|
|
|
2003-05-24 01:28:07 +08:00
|
|
|
CLEANFILES = $(EXTRA_PROGRAMS) foorc gimprc gimprc-$(LT_RELEASE).5.in
|
2003-01-26 04:29:42 +08:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# hooks to assure that files generated by gimpconfig-dump are
|
|
|
|
# uptodate when a release is made
|
|
|
|
#
|
|
|
|
|
|
|
|
dist-hook: gimpconfig-dump
|
2003-05-24 01:28:07 +08:00
|
|
|
./$< --man-page > $(top_srcdir)/docs/gimprc-$(LT_RELEASE).5.in
|
2003-01-26 04:29:42 +08:00
|
|
|
./$< --system-gimprc > $(top_srcdir)/etc/gimprc
|