gimp/Makefile.am
Tor Lillqvist 0cda2cd33f New file, shell script used to build zipfiles for distribution of Windows
2003-10-09  Tor Lillqvist  <tml@iki.fi>

	* gimp-zip.in: New file, shell script used to build zipfiles for
	distribution of Windows runtime and developer packages.

	* Makefile.am
	* configure.in: Add it, expand it.

	* libgimp*/Makefile.am: On Windows, install and uninstall the .def
	files.

	* app/config/gimpguiconfig.c: On Windows, don't use the internal
	help browser by default, as it isn't there. Don't use a fixed
	guess for Internet Explorer's path on Windows. We don't even need
	to know the path to the web browser, we can use ShellExecute() in
	the webbrowser plug-in.

	* plug-ins/common/webbrowser.c: Use ShellExecute() on Windows.

	* po*/makefile.cygwin: Remove, unmaintained.
2003-10-09 21:33:27 +00:00

83 lines
1.4 KiB
Makefile

## Process this file with automake to produce Makefile.in
SUBDIRS = \
m4macros \
tools \
regexrepl \
cursors \
themes \
po \
po-libgimp \
po-plug-ins \
po-script-fu \
data \
tips \
libgimpbase \
libgimpcolor \
libgimpmath \
libgimpmodule \
libgimpwidgets \
libgimp \
app \
$(GIMP_MODULES) \
$(GIMP_PLUGINS) \
etc \
docs \
devel-docs
bin_SCRIPTS = gimptool-$(LT_RELEASE) @GIMPINSTALL@
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = gimp-$(LT_RELEASE).pc gimpui-$(LT_RELEASE).pc
EXTRA_SCRIPTS = gimpinstall-$(LT_RELEASE)
EXTRA_DIST = \
AUTHORS \
COPYING \
ChangeLog \
ChangeLog.pre-1-0 \
ChangeLog.pre-1-2 \
HACKING \
INSTALL \
LICENSE \
MAINTAINERS \
NEWS \
PLUGIN_MAINTAINERS \
README \
README.i18n \
README.win32 \
TODO.xml \
config.h.win32 \
gimp.spec.in \
gimp.spec \
gimp-zip.in \
gimptool-win32.c.in \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
po-libgimp/update.sh \
po-plug-ins/update.sh \
po-script-fu/update.sh
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update
gimpinstall-@LT_RELEASE@:
$(LN_S) $(srcdir)/install-sh $(srcdir)/gimpinstall-$(LT_RELEASE)
install-exec-hook:
if DEFAULT_BINARY
cd $(DESTDIR)$(bindir) \
&& rm -f gimptool \
&& $(LN_S) gimptool-$(LT_RELEASE) gimptool
endif
uninstall-local:
if DEFAULT_BINARY
rm -f $(DESTDIR)$(bindir)/gimptool
endif