## Process this file with automake to produce Makefile.in INCLUDES = \ -DG_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED \ -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED \ -DGTK_DISABLE_DEPRECATED \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -DG_LOG_DOMAIN=\"GooCanvas\" \ @PACKAGE_CFLAGS@ lib_LTLIBRARIES = libgoocanvas.la libgoocanvas_la_LIBADD = @PACKAGE_LIBS@ $(INTLLIBS) libgoocanvasincludedir = $(includedir)/goocanvas-1.0 libgoocanvasinclude_HEADERS = \ goocanvasellipse.h \ goocanvasellipseview.h \ goocanvasgroup.h \ goocanvasgroupview.h \ goocanvasimage.h \ goocanvasimageview.h \ goocanvasitem.h \ goocanvasitemsimple.h \ goocanvasitemview.h \ goocanvasitemviewsimple.h \ goocanvasmodel.h \ goocanvasmodelsimple.h \ goocanvaspolyline.h \ goocanvaspolylineview.h \ goocanvaspath.h \ goocanvaspathview.h \ goocanvasrect.h \ goocanvasrectview.h \ goocanvastext.h \ goocanvastextview.h \ goocanvasutils.h \ goocanvasview.h \ goocanvas.h libgoocanvas_la_SOURCES = \ goocanvasmarshal.list \ goocanvasatk.h \ goocanvasatk.c \ goocanvasellipse.c \ goocanvasellipseview.c \ goocanvasgroup.c \ goocanvasgroupview.c \ goocanvasimage.c \ goocanvasimageview.c \ goocanvasitem.c \ goocanvasitemsimple.c \ goocanvasitemview.c \ goocanvasitemviewsimple.c \ goocanvasmodel.c \ goocanvasmodelsimple.c \ goocanvaspolyline.c \ goocanvaspolylineview.c \ goocanvaspath.c \ goocanvaspathview.c \ goocanvasprivate.h \ goocanvasrect.c \ goocanvasrectview.c \ goocanvastext.c \ goocanvastextview.c \ goocanvasutils.c \ goocanvasview.c GENMARSHAL_COMMAND = $(GLIB_GENMARSHAL) --prefix=goo_canvas_marshal SUFFIXES = .list .list.h: $(GENMARSHAL_COMMAND) --header $< >$@ .list.c: (echo '/* This file has been automatically generated. Do not edit. */' && \ echo '#include "$*.h"' && \ $(GENMARSHAL_COMMAND) --body $< ) >$@ # A hint is needed to build the header first: BUILT_SOURCES = goocanvasmarshal.h # Another hint, see bugs #172211 and #172212: non-intermediate: goocanvasmarshal.c CLEANFILES = goocanvasmarshal.h goocanvasmarshal.c