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.
31 lines
655 B
Makefile
31 lines
655 B
Makefile
libexecdir = $(gimpplugindir)/tool-plug-ins
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app/ \
|
|
-I$(top_srcdir)/app/tools \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
libexec_LTLIBRARIES = libgimpbrushselecttool.la
|
|
|
|
|
|
###BEGIN EVIL KLUDGE
|
|
|
|
install-exec-hook:
|
|
list='$(libexec_LTLIBRARIES)'; for p in $$list; do \
|
|
rm -f $(DESTDIR)$(libexecdir)/$$p; \
|
|
rm -f `echo $(DESTDIR)$(libexecdir)/$$p | sed -e "s/\\.la/.a/"`; \
|
|
done
|
|
|
|
###END EVIL KLUDGE
|
|
|
|
|
|
libgimpbrushselecttool_la_SOURCES = \
|
|
gimpbrushselecttool.c \
|
|
gimpbrushselecttool.h
|
|
|
|
libgimpbrushselecttool_la_LDFLAGS = -avoid-version -module
|
|
libgimpbrushselecttool_la_LIBADD = $(GTK_LIBS)
|
|
|