From: Emden Gansner Date: Fri, 7 Oct 2011 18:46:48 +0000 (-0400) Subject: Amend quartz driver makefile to handle cgraph X-Git-Tag: LAST_LIBGRAPH~32^2~643 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c8cbe780d6c3cdab6902f4b2073c9864eb3a87c;p=graphviz Amend quartz driver makefile to handle cgraph --- diff --git a/plugin/quartz/Makefile.am b/plugin/quartz/Makefile.am index 9bb6e54d5..d8869c9ef 100644 --- a/plugin/quartz/Makefile.am +++ b/plugin/quartz/Makefile.am @@ -1,12 +1,18 @@ # $Id$ $Revision$ ## Process this file with automake to produce Makefile.in +if WITH_CGRAPH +GRAPH = cgraph +else +GRAPH = graph +endif + 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/$(GRAPH) \ -I$(top_srcdir)/lib/cdt \ $(QUARTZ_CFLAGS)