gimp/tools/Makefile.am
Sven Neumann 3aae39405e app/base/Makefile.am automake-1.6 seems to use yet another variable to
2002-06-08  Sven Neumann  <sven@gimp.org>

	* app/base/Makefile.am
	* app/paint-funcs/Makefile.am: automake-1.6 seems to use yet another
	variable to pass flags to the assembler (bug #84514). Define
	AM_CCASFLAGS like AM_ASFLAGS to satisfy all versions of automake.

	* configure.in
	* all Makefiles: removed STRIP_BEGIN and STRIP_END since it's a
	GNU make extension that we don't really need and newer versions of
	automake don't seem to like it.
2002-06-07 23:00:46 +00:00

58 lines
969 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-1.3 \
kernelgen
gimp_remote_1_3_SOURCES = gimp-remote.c
gimp_remote_1_3_LDADD = \
$(GTK_LIBS) \
$(LIBXMU)
kernelgen_SOURCES = kernelgen.c
INCLUDES = \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(includedir)
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