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.
28 lines
510 B
Makefile
28 lines
510 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Vectors\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
noinst_LIBRARIES = libappvectors.a
|
|
|
|
libappvectors_a_SOURCES = \
|
|
vectors-types.h \
|
|
gimpanchor.h \
|
|
gimpbezierstroke.h \
|
|
gimpbezierstroke.c \
|
|
gimpstroke.h \
|
|
gimpstroke.c \
|
|
gimpvectors.c \
|
|
gimpvectors.h \
|
|
gimpvectors-preview.c \
|
|
gimpvectors-preview.h
|
|
|
|
|