## Process this with automake to create Makefile.in AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I ../.. ## Includes INCLUDES = -I$(srcdir)/.. -I$(top_builddir)/.. SUBDIRS = libart . testsuite ## ... AM_CPPFLAGS = -D_GNU_SOURCE=1 -Wall pkginclude_HEADERS = GFBase.h GFColorSpace.h GFContext.h GFGeometry.h lib_LTLIBRARIES = libGraphicsFoundation.la libGraphicsFoundation_la_SOURCES = GFContext.c GFBitmapContext.c \ GFColorSpace.c GFGState.c GFGeometry.c libGraphicsFoundation_la_LDFLAGS = -export-symbols-regex "^GF.*" libGraphicsFoundation_la_LIBADD = libart/*.lo libGraphicsFoundation.la: $(libGraphicsFoundation_la_DEPENDENCIES) $(libGraphicsFoundation_la_OBJECTS) $(LINK) -rpath $(libdir) $(libGraphicsFoundation_la_LDFLAGS) \ $(libGraphicsFoundation_la_OBJECTS) $(libGraphicsFoundation_la_LIBADD) $(LIBS)