1997-11-25 06:05:25 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2000-01-27 18:47:01 +08:00
|
|
|
SUBDIRS = \
|
2001-08-28 21:04:47 +08:00
|
|
|
m4macros \
|
2001-07-12 08:58:39 +08:00
|
|
|
tools \
|
|
|
|
regexrepl \
|
2001-08-04 22:10:58 +08:00
|
|
|
pixmaps \
|
2001-11-14 23:56:19 +08:00
|
|
|
cursors \
|
2001-08-06 00:07:02 +08:00
|
|
|
themes \
|
2001-11-14 23:56:19 +08:00
|
|
|
po \
|
|
|
|
po-libgimp \
|
|
|
|
po-plug-ins \
|
|
|
|
po-script-fu \
|
|
|
|
$(GIMP_PERL_PO) \
|
2002-03-09 01:09:20 +08:00
|
|
|
data \
|
|
|
|
etc \
|
|
|
|
tips \
|
2001-07-12 08:58:39 +08:00
|
|
|
libgimpbase \
|
|
|
|
libgimpcolor \
|
|
|
|
libgimpmath \
|
|
|
|
libgimpwidgets \
|
2002-03-29 11:39:45 +08:00
|
|
|
libgimpproxy \
|
|
|
|
libgimptool \
|
2001-07-12 08:58:39 +08:00
|
|
|
libgimp \
|
|
|
|
app \
|
|
|
|
$(GIMP_MODULES) \
|
2001-11-14 23:56:19 +08:00
|
|
|
$(GIMP_PLUGINS) \
|
2001-07-12 08:58:39 +08:00
|
|
|
docs \
|
|
|
|
devel-docs \
|
2000-07-05 02:50:03 +08:00
|
|
|
build
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-25 08:19:38 +08:00
|
|
|
bin_SCRIPTS = gimptool-1.3 @GIMPINSTALL@
|
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = gimp-1.3.pc gimpui-1.3.pc
|
1999-08-26 08:31:37 +08:00
|
|
|
|
2002-02-03 16:03:21 +08:00
|
|
|
EXTRA_SCRIPTS = gimpinstall-1.3
|
1998-05-03 05:50:29 +08:00
|
|
|
|
1998-11-06 08:51:39 +08:00
|
|
|
EXTRA_DIST = \
|
2002-03-28 23:45:27 +08:00
|
|
|
AUTHORS \
|
|
|
|
COPYING \
|
|
|
|
ChangeLog \
|
|
|
|
ChangeLog.pre-1-0 \
|
|
|
|
ChangeLog.pre-1-2 \
|
|
|
|
HACKING \
|
|
|
|
INSTALL \
|
|
|
|
MAINTAINERS \
|
|
|
|
NEWS \
|
|
|
|
PLUGIN_MAINTAINERS \
|
|
|
|
README \
|
|
|
|
README.i18n \
|
|
|
|
README.perl \
|
|
|
|
README.win32 \
|
|
|
|
TODO \
|
|
|
|
TODO.xml \
|
|
|
|
config.h.win32 \
|
|
|
|
intltool-extract.in \
|
|
|
|
intltool-merge.in \
|
|
|
|
intltool-update.in \
|
|
|
|
po-libgimp/update.sh \
|
|
|
|
po-plug-ins/update.sh \
|
2001-11-13 13:33:44 +08:00
|
|
|
po-script-fu/update.sh
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-06-21 07:50:15 +08:00
|
|
|
DISTCLEANFILES = \
|
|
|
|
intltool-extract \
|
|
|
|
intltool-merge \
|
|
|
|
intltool-update
|
|
|
|
|
2002-02-03 16:03:21 +08:00
|
|
|
gimpinstall-1.3:
|
|
|
|
$(LN_S) $(srcdir)/install-sh $(srcdir)/gimpinstall-1.3
|
1999-08-26 08:31:37 +08:00
|
|
|
|
2002-02-03 16:03:21 +08:00
|
|
|
install-exec-hook:
|
|
|
|
if DEFAULT_BINARY
|
2000-01-27 18:47:01 +08:00
|
|
|
cd $(DESTDIR)$(bindir) \
|
2002-02-03 16:03:21 +08:00
|
|
|
&& rm -f gimptool \
|
|
|
|
&& $(LN_S) gimptool-1.3 gimptool
|
|
|
|
endif
|
2000-01-27 18:47:01 +08:00
|
|
|
|
|
|
|
uninstall-local:
|
2002-02-03 16:03:21 +08:00
|
|
|
if DEFAULT_BINARY
|
|
|
|
rm -f $(DESTDIR)$(bindir)/gimptool
|
|
|
|
endif
|
2002-03-08 20:36:40 +08:00
|
|
|
|
|
|
|
# This is a version of the automake-1.4 distcheck rule modified
|
|
|
|
# to pass --enable-gtk-doc to ./configure
|
|
|
|
#
|
|
|
|
mydistcheck: dist
|
|
|
|
-rm -rf $(distdir)
|
|
|
|
GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
|
|
|
|
mkdir $(distdir)/=build
|
|
|
|
mkdir $(distdir)/=inst
|
|
|
|
dc_install_base=`cd $(distdir)/=inst && pwd`; \
|
|
|
|
cd $(distdir)/=build \
|
|
|
|
&& ../configure --srcdir=.. --prefix=$$dc_install_base --enable-gtk-doc \
|
|
|
|
&& $(MAKE) $(AM_MAKEFLAGS) \
|
|
|
|
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
|
|
|
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
|
|
|
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
|
|
|
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
|
|
|
&& $(MAKE) $(AM_MAKEFLAGS) dist
|
|
|
|
-rm -rf $(distdir)
|
|
|
|
@banner="$(distdir).tar.gz is ready for distribution"; \
|
|
|
|
dashes=`echo "$$banner" | sed s/./=/g`; \
|
|
|
|
echo "$$dashes"; \
|
|
|
|
echo "$$banner"; \
|
|
|
|
echo "$$dashes"
|