gimp/tools/Makefile.am
Sven Neumann 538193c1f0 include gimp-mkproxy. Should fix bug #83455.
2002-05-30  Sven Neumann  <sven@gimp.org>

	* tools/Makefile.am (EXTRA_DIST): include gimp-mkproxy. Should fix
	bug #83455.
2002-05-29 23:19:18 +00:00

60 lines
1 KiB
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-1.3 \
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 = \
gimp-mkenums \
gimp-mkproxy \
gimppath2svg.py \
rmshm
install-exec-hook:
if DEFAULT_BINARY
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
endif
uninstall-local:
if DEFAULT_BINARY
rm -f $(DESTDIR)$(bindir)/gimp-remote
endif