gimp/tools/Makefile.am
Manish Singh 701d759a4d configure.in Makefile.am app/Makefile.am docs/Makefile.am
2002-02-02  Manish Singh  <yosh@gimp.org>

        * configure.in
        * Makefile.am
        * app/Makefile.am
        * docs/Makefile.am
        * plug-ins/print/Makefile.am
        * tools/Makefile.am
        * (the various manpages): versioned the binaries and manpages.
        Added an --enable-default-binary switch to configure to make
        symlinks for unversioned things (defaults to no for 1.3). The
        perl stuff isn't touched, but that's disabled in the build here
        anyway.
2002-02-03 08:03:21 +00:00

56 lines
1,008 B
Makefile

## Process this file with automake to produce Makefile.in
if WITH_PDBGEN
D_pdbgen = pdbgen
else
D_pdbgen =
endif
if WITH_AUTHORSGEN
D_authorgen = authorsgen
else
D_authorgen =
endif
SUBDIRS = $(D_pdbgen) $(D_authorgen)
bin_PROGRAMS = $(GIMP_REMOTE)
EXTRA_PROGRAMS = \
gimp-remote \
kernelgen
gimp_remote_1_3_SOURCES = gimp-remote.c
gimp_remote_1_3_LDADD = @STRIP_BEGIN@ \
$(GTK_LIBS) \
$(LIBXMU) \
@STRIP_END@
kernelgen_SOURCES = kernelgen.c
INCLUDES = @STRIP_BEGIN@ \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(includedir) \
@STRIP_END@
EXTRA_DIST = \
gimppath2svg.py \
rmshm
## if DEFAULT_BINARY
## install-exec-hook:
## @if test -f "$(DESTDIR)$(bindir)/gimp-remote-1.3"; then \
## echo "cd $(DESTDIR)$(bindir)"; \
## cd $(DESTDIR)$(bindir); \
## echo "rm -f gimp-remote"; \
## rm -f gimp-remote; \
## echo "$(LN_S) gimp-remote-1.3 gimp-remote"; \
## $(LN_S) gimp-remote-1.3 gimp-remote; \
## fi
##
## uninstall-local:
## rm -f $(DESTDIR)$(bindir)/gimp-remote
## endif