1997-11-25 06:05:25 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2001-11-27 11:52:11 +08:00
|
|
|
SUBDIRS = \
|
|
|
|
paint-funcs \
|
2003-07-09 18:16:50 +08:00
|
|
|
composite \
|
2001-11-27 11:52:11 +08:00
|
|
|
base \
|
|
|
|
config \
|
2003-09-10 10:56:01 +08:00
|
|
|
core \
|
2002-02-15 03:31:16 +08:00
|
|
|
paint \
|
2003-01-30 06:20:09 +08:00
|
|
|
text \
|
|
|
|
vectors \
|
2001-11-27 11:52:11 +08:00
|
|
|
xcf \
|
|
|
|
file \
|
|
|
|
plug-in \
|
|
|
|
tools \
|
|
|
|
widgets \
|
2002-03-21 03:25:14 +08:00
|
|
|
display \
|
2003-09-10 10:56:01 +08:00
|
|
|
gui \
|
2002-03-14 02:07:25 +08:00
|
|
|
pdb
|
2001-01-22 05:58:16 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
scriptdata =
|
|
|
|
|
2003-09-10 10:56:01 +08:00
|
|
|
if ENABLE_GIMP_CONSOLE
|
|
|
|
bin_PROGRAMS = gimp-1.3 gimp-console-1.3
|
|
|
|
else
|
2001-11-25 08:19:38 +08:00
|
|
|
bin_PROGRAMS = gimp-1.3
|
2003-09-10 10:56:01 +08:00
|
|
|
endif
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-05-22 01:38:14 +08:00
|
|
|
gimp_1_3_SOURCES = \
|
2003-07-04 08:31:05 +08:00
|
|
|
app_procs.c \
|
|
|
|
app_procs.h \
|
|
|
|
main.c \
|
|
|
|
batch.c \
|
|
|
|
batch.h \
|
|
|
|
errors.c \
|
|
|
|
errors.h \
|
2003-11-16 06:53:28 +08:00
|
|
|
units.c \
|
|
|
|
units.h \
|
|
|
|
gimp-intl.h
|
2001-11-12 02:35:25 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
EXTRA_DIST = \
|
2003-07-04 08:31:05 +08:00
|
|
|
makefile.msc \
|
|
|
|
gimp.rc \
|
|
|
|
wilber.ico
|
2001-07-12 08:58:39 +08:00
|
|
|
|
|
|
|
if HAVE_GLIBC_REGEX
|
|
|
|
REGEXREPL =
|
|
|
|
else
|
|
|
|
REGEXREPL = $(top_builddir)/regexrepl/libregex.a
|
|
|
|
endif
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-09-10 10:56:01 +08:00
|
|
|
if OS_WIN32
|
2003-09-16 09:05:12 +08:00
|
|
|
mwindows = -mwindows
|
2003-09-10 10:56:01 +08:00
|
|
|
endif
|
1999-05-05 06:59:54 +08:00
|
|
|
|
2003-09-16 09:05:12 +08:00
|
|
|
gimp_1_3_LDFLAGS = \
|
2003-09-18 07:09:29 +08:00
|
|
|
$(mwindows) \
|
2003-11-15 20:37:25 +08:00
|
|
|
-u $(SYMPREFIX)gimp_container_filter \
|
|
|
|
-u $(SYMPREFIX)gimp_xml_parser_new \
|
|
|
|
-u $(SYMPREFIX)gimp_drawable_stroke_vectors
|
2003-09-16 09:05:12 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
AM_CPPFLAGS = \
|
2002-12-04 20:26:39 +08:00
|
|
|
-DG_LOG_DOMAIN=\"Gimp\" \
|
|
|
|
-DGIMP_APP_GLUE_COMPILATION \
|
|
|
|
@GIMP_THREAD_FLAGS@ \
|
2002-06-08 07:00:46 +08:00
|
|
|
@GIMP_MP_FLAGS@
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
$(GTK_CFLAGS) \
|
|
|
|
-I$(includedir)
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
gimp_1_3_LDADD = \
|
2003-02-03 21:39:55 +08:00
|
|
|
config/libappconfig.a \
|
2001-06-06 00:14:47 +08:00
|
|
|
gui/libappgui.a \
|
2001-08-17 22:27:31 +08:00
|
|
|
display/libappdisplay.a \
|
2002-03-29 11:50:29 +08:00
|
|
|
tools/libapptools.a \
|
2001-06-06 00:14:47 +08:00
|
|
|
widgets/libappwidgets.a \
|
|
|
|
core/libappcore.a \
|
2002-02-22 00:02:30 +08:00
|
|
|
pdb/libapppdb.a \
|
|
|
|
paint/libapppaint.a \
|
2001-10-19 01:27:36 +08:00
|
|
|
xcf/libappxcf.a \
|
2003-06-24 21:58:34 +08:00
|
|
|
text/libapptext.a \
|
2003-05-23 03:02:38 +08:00
|
|
|
vectors/libappvectors.a \
|
2001-10-25 21:30:01 +08:00
|
|
|
file/libappfile.a \
|
2001-12-19 08:13:16 +08:00
|
|
|
plug-in/libappplug-in.a \
|
2001-07-04 02:38:56 +08:00
|
|
|
paint-funcs/libapppaint-funcs.a \
|
2003-07-13 23:48:41 +08:00
|
|
|
composite/libappcomposite.a \
|
2003-10-21 07:02:49 +08:00
|
|
|
base/libappbase.a \
|
2001-02-25 22:37:12 +08:00
|
|
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
|
|
|
$(top_builddir)/libgimpmath/libgimpmath-$(LT_RELEASE).la \
|
2001-05-21 21:58:46 +08:00
|
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
2002-10-21 22:15:02 +08:00
|
|
|
$(top_builddir)/libgimpmodule/libgimpmodule-$(LT_RELEASE).la \
|
2003-12-08 17:12:25 +08:00
|
|
|
$(top_builddir)/libgimpthumb/libgimpthumb-$(LT_RELEASE).la \
|
2003-05-23 03:02:38 +08:00
|
|
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
2001-02-25 22:37:12 +08:00
|
|
|
$(GTK_LIBS) \
|
2002-03-07 04:25:31 +08:00
|
|
|
$(LIBART_LIBS) \
|
2003-07-22 21:44:07 +08:00
|
|
|
$(PANGOFT2_LIBS) \
|
|
|
|
$(FONTCONFIG_LIBS) \
|
|
|
|
$(FREETYPE_LIBS) \
|
2001-02-25 22:37:12 +08:00
|
|
|
$(GIMP_THREAD_LIBS) \
|
|
|
|
$(GIMP_MP_LIBS) \
|
2004-01-04 06:41:09 +08:00
|
|
|
$(RT_LIBS) \
|
2001-06-08 01:20:50 +08:00
|
|
|
$(INTLLIBS) \
|
2002-06-08 07:00:46 +08:00
|
|
|
$(REGEXREPL)
|
2002-02-03 16:03:21 +08:00
|
|
|
|
2003-09-10 10:56:01 +08:00
|
|
|
if ENABLE_GIMP_CONSOLE
|
|
|
|
gimp_console_1_3_SOURCES = $(gimp_1_3_SOURCES)
|
|
|
|
|
|
|
|
gimp_console_1_3_LDADD = \
|
|
|
|
config/libappconfig.a \
|
|
|
|
core/libappcore.a \
|
|
|
|
pdb/libapppdb.a \
|
|
|
|
paint/libapppaint.a \
|
|
|
|
xcf/libappxcf.a \
|
|
|
|
text/libapptext.a \
|
|
|
|
vectors/libappvectors.a \
|
|
|
|
file/libappfile.a \
|
|
|
|
plug-in/libappplug-in.a \
|
|
|
|
paint-funcs/libapppaint-funcs.a \
|
|
|
|
base/libappbase.a \
|
|
|
|
composite/libappcomposite.a \
|
|
|
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
|
|
|
$(top_builddir)/libgimpmath/libgimpmath-$(LT_RELEASE).la \
|
|
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
2003-12-08 17:12:25 +08:00
|
|
|
$(top_builddir)/libgimpthumb/libgimpthumb-$(LT_RELEASE).la \
|
2003-09-10 10:56:01 +08:00
|
|
|
$(top_builddir)/libgimpmodule/libgimpmodule-$(LT_RELEASE).la \
|
|
|
|
$(GDK_PIXBUF_LIBS) \
|
|
|
|
$(LIBART_LIBS) \
|
|
|
|
$(PANGOFT2_LIBS) \
|
|
|
|
$(FONTCONFIG_LIBS) \
|
|
|
|
$(FREETYPE_LIBS) \
|
|
|
|
$(GIMP_THREAD_LIBS) \
|
|
|
|
$(GIMP_MP_LIBS) \
|
|
|
|
$(INTLLIBS) \
|
|
|
|
$(REGEXREPL)
|
|
|
|
endif
|
|
|
|
|
2002-02-03 16:03:21 +08:00
|
|
|
install-exec-hook:
|
|
|
|
if DEFAULT_BINARY
|
|
|
|
cd $(DESTDIR)$(bindir) \
|
2002-12-26 10:08:28 +08:00
|
|
|
&& rm -f gimp$(EXEEXT) \
|
2003-05-24 01:28:07 +08:00
|
|
|
&& $(LN_S) gimp-$(LT_RELEASE)$(EXEEXT) gimp$(EXEEXT)
|
2003-09-10 10:56:01 +08:00
|
|
|
if ENABLE_GIMP_CONSOLE
|
|
|
|
cd $(DESTDIR)$(bindir) \
|
|
|
|
&& rm -f gimp-console$(EXEEXT) \
|
|
|
|
&& $(LN_S) gimp-console-$(LT_RELEASE)$(EXEEXT) gimp-console$(EXEEXT)
|
|
|
|
endif
|
2002-02-03 16:03:21 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
uninstall-local:
|
|
|
|
if DEFAULT_BINARY
|
2002-12-26 10:08:28 +08:00
|
|
|
rm -f $(DESTDIR)$(bindir)/gimp$(EXEEXT)
|
2003-09-10 10:56:01 +08:00
|
|
|
if ENABLE_GIMP_CONSOLE
|
2004-01-14 19:10:35 +08:00
|
|
|
rm -f $(DESTDIR)$(bindir)/gimp-console$(EXEEXT)
|
2003-09-10 10:56:01 +08:00
|
|
|
endif
|
2002-02-03 16:03:21 +08:00
|
|
|
endif
|
2003-10-14 06:55:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
# hooks to assure that the system gimprc and the gimprc manpage are
|
|
|
|
# uptodate when a release is made
|
|
|
|
|
|
|
|
dist-hook: gimp-1.3
|
|
|
|
./$< --dump-gimprc-system > $(top_srcdir)/etc/gimprc
|
|
|
|
./$< --dump-gimprc-manpage > $(top_srcdir)/docs/gimprc-$(LT_RELEASE).5.in
|