2004-12-11 Sven Neumann <sven@gimp.org> * configure.in: set version to 2.2.0. * tools/Makefile.am * tools/authorsgen/Makefile.am * tools/authorsgen/authorsgen.pl * tools/authorsgen/contributors: removed authorsgen, a perl script that used to be used to create AUTHORS and authors.h. * Makefile.am * authors.dtd * authors.xml: added a simple XML file that lists authors and contributors and a DTD to validate it. * authors.xsl: a stylesheet to generate AUTHORS from authors.xml. * app/dialogs/Makefile.am * app/dialogs/authors.xsl: a stylesheet to generate authors.h from authors.xml. * app/dialogs/authors.h: regenerated. * app/dialogs/about-dialog.c: added a const modifier.
52 lines
970 B
Makefile
52 lines
970 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
if WITH_PDBGEN
|
|
D_pdbgen = pdbgen
|
|
else
|
|
D_pdbgen =
|
|
endif
|
|
|
|
SUBDIRS = $(D_pdbgen)
|
|
|
|
bin_PROGRAMS = $(GIMP_REMOTE)
|
|
|
|
EXTRA_PROGRAMS = \
|
|
gimp-remote-2.2 \
|
|
kernelgen
|
|
|
|
gimp_remote_2_2_SOURCES = gimp-remote.c
|
|
|
|
gimp_remote_2_2_LDADD = \
|
|
$(GTK_LIBS) \
|
|
$(LIBXMU)
|
|
|
|
kernelgen_SOURCES = kernelgen.c
|
|
|
|
AM_CPPFLAGS = -DGIMP_APP_VERSION=\"@GIMP_APP_VERSION@\"
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = \
|
|
gimp-mkenums \
|
|
gimppath2svg.py \
|
|
rmshm
|
|
|
|
install-exec-hook:
|
|
if DEFAULT_BINARY
|
|
if test -f "$(DESTDIR)$(bindir)/gimp-remote-@GIMP_APP_VERSION@"; then \
|
|
echo "cd $(DESTDIR)$(bindir)"; \
|
|
cd $(DESTDIR)$(bindir); \
|
|
echo "rm -f gimp-remote"; \
|
|
rm -f gimp-remote; \
|
|
echo "$(LN_S) gimp-remote-@GIMP_APP_VERSION@ gimp-remote"; \
|
|
$(LN_S) gimp-remote-@GIMP_APP_VERSION@ gimp-remote; \
|
|
fi
|
|
endif
|
|
|
|
uninstall-local:
|
|
if DEFAULT_BINARY
|
|
rm -f $(DESTDIR)$(bindir)/gimp-remote
|
|
endif
|