From 96e2893cf642b56ab380ccfa43e560b961211ed5 Mon Sep 17 00:00:00 2001 From: erg Date: Thu, 1 Jul 2010 20:34:55 +0000 Subject: [PATCH] Add unix makefile template --- lib/dotgen2/Makefile.am | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 lib/dotgen2/Makefile.am diff --git a/lib/dotgen2/Makefile.am b/lib/dotgen2/Makefile.am new file mode 100644 index 000000000..9f7d90067 --- /dev/null +++ b/lib/dotgen2/Makefile.am @@ -0,0 +1,25 @@ +# $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/gvc \ + -I$(top_srcdir)/lib/ortho \ + -I$(top_srcdir)/lib/$(GRAPH) \ + -I$(top_srcdir)/lib/cdt \ + -I$(top_srcdir)/lib/pathplan + +noinst_HEADERS = dot2.h dot2procs.h groups.h minc.h +noinst_LTLIBRARIES = libdotgen2_C.la + +libdotgen2_C_la_LDFLAGS = -no-undefined +libdotgen2_C_la_SOURCES = dotinit.c level.c minc2.c ns.c groups.c minc_utils.c + +EXTRA_DIST = dotgen2.vcproj -- 2.40.0