From 20a545648028d9ab0369a62c18efc66854e73eac Mon Sep 17 00:00:00 2001
From: ellson <devnull@localhost>
Date: Tue, 11 Mar 2008 18:55:46 +0000
Subject: [PATCH] make a start at a glitz plugin

---
 plugin/glitz/Makefile.am | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 plugin/glitz/Makefile.am

diff --git a/plugin/glitz/Makefile.am b/plugin/glitz/Makefile.am
new file mode 100644
index 000000000..f3029b8f0
--- /dev/null
+++ b/plugin/glitz/Makefile.am
@@ -0,0 +1,34 @@
+# $Id$ $Revision$
+## Process this file with automake to produce Makefile.in
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir) \
+	-I$(top_srcdir)/lib/common \
+	-I$(top_srcdir)/lib/pathplan \
+	-I$(top_srcdir)/lib/gvc \
+	-I$(top_srcdir)/lib/graph \
+	-I$(top_srcdir)/lib/cdt \
+	$(PANGOCAIRO_CFLAGS) $(GLITZ_CFLAGS)
+
+if WITH_PANGOCAIRO
+if WITH_GLITZ
+noinst_LTLIBRARIES = libgvplugin_glitz_C.la
+if WITH_WIN32
+lib_LTLIBRARIES = libgvplugin_glitz.la
+else
+pkglib_LTLIBRARIES = libgvplugin_glitz.la
+endif
+endif
+endif
+
+libgvplugin_glitz_C_la_SOURCES = \
+	gvplugin_glitz.c \
+	gvdevice_glitz.c
+
+libgvplugin_glitz_la_LDFLAGS = -version-info @GVPLUGIN_VERSION_INFO@
+libgvplugin_glitz_la_SOURCES = $(libgvplugin_glitz_C_la_SOURCES)
+libgvplugin_glitz_la_LIBADD = @PANGOCAIRO_LIBS@ @GLITZ_LIBS@
+
+if WITH_WIN32
+libgvplugin_glitz_la_LDFLAGS += -no-undefined
+endif
-- 
2.40.0