From 3bec282dbd70a2ad5ea91ddf2388c35c6b8cce53 Mon Sep 17 00:00:00 2001
From: Douglas Gregor
Date: Fri, 15 Dec 2006 13:35:08 +0000
Subject: [PATCH] Finish renaming bgl-viz to boost_graph
[SVN r36404]
---
doc/history.html | 1 +
doc/read_graphviz.html | 2 +-
doc/read_graphviz.rst | 2 +-
src/Makefile | 88 ------------------------------------------
4 files changed, 3 insertions(+), 90 deletions(-)
delete mode 100644 src/Makefile
diff --git a/doc/history.html b/doc/history.html
index 8043746a..20d25281 100644
--- a/doc/history.html
+++ b/doc/history.html
@@ -84,6 +84,7 @@ September 27, 2000.
sorted_erdos_renyi_iterator, from Jeremiah Willcock of Indiana University.
Enhancements
+ - Note: the name of the compiled library for GraphViz reading is now called
boost_graph rather than bgl-viz.
- biconnected_components now has a visitor parameter and supports named parameters, from Janusz Piwowarski.
- adjacency_matrix now models the Bidirectional Graph concept.
- adjacency_list is now Serializable, from Jeremy Siek of Rice University.
diff --git a/doc/read_graphviz.html b/doc/read_graphviz.html
index ace4cfe6..5b5f75aa 100644
--- a/doc/read_graphviz.html
+++ b/doc/read_graphviz.html
@@ -130,7 +130,7 @@ language.
To use the GraphViz readers, you will need to build and link against
-the "bgl-viz" library. The library can be built by following the
+the "boost_graph" library. The library can be built by following the
Boost Jam Build Instructions for the subdirectory libs/graph/build.
diff --git a/doc/read_graphviz.rst b/doc/read_graphviz.rst
index 68c3b2ab..aad5c3c1 100644
--- a/doc/read_graphviz.rst
+++ b/doc/read_graphviz.rst
@@ -125,7 +125,7 @@ language.
Building the GraphViz Readers
-----------------------------
To use the GraphViz readers, you will need to build and link against
-the "bgl-viz" library. The library can be built by following the
+the "boost_graph" library. The library can be built by following the
`Boost Jam Build Instructions`_ for the subdirectory ``libs/graph/build``.
Deprecated Readers
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index d76ef549..00000000
--- a/src/Makefile
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright (c) 2002 Trustees of Indiana University
-#
-# Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or copy at
-# http://www.boost.org/LICENSE_1_0.txt)
-
-# The files in this directory implement the read_graphviz() functions
-# declared in . There are both directed
-# and undirected graph versions of these functions. To use both, you
-# will need to compile the code generated from graphviz_parser.y twice,
-# once with -DGRAPHVIZ_DIRECTED=0 and once with -DGRAPHVIZ_DIRECTED=1.
-#
-# This Makefile will most likely *not* work on your system.
-# We have not yet had time to create a portable Makefile.
-# This is the Makefile we currently use.
-#
-
-BOOST = ../../..
-
-CXX = g++ -ftemplate-depth-50
-LEX = flex -L
-YACC = bison -l
-MV = /bin/mv
-
-EXTRAFLAGS = -g
-
-INCLUDES = -I$(BOOST)
-
-CXXFLAGS = $(INCLUDES) $(EXTRAFLAGS)
-
-LDFLAAGS =
-
-LIBS =
-
-AR = ar
-
-
-default: libbgl-viz.a libbgl-viz.so
-
-OBJS = graphviz_graph_lex.o graphviz_digraph_lex.o graphviz_digraph_parser.o graphviz_graph_parser.o
-
-libbgl-viz.a: $(OBJS)
- $(AR) -rc libbgl-viz.a $(OBJS)
-
-GRAPH_SONAME_VERSION = 1
-
-libbgl-viz.so: $(OBJS)
- $(CXX) -shared -Wl,-soname -Wl,$@.$(GRAPH_SONAME_VERSION) -o $@.$(GRAPH_SONAME_VERSION) $(OBJS)
- ln -s $@.$(GRAPH_SONAME_VERSION) $@
-
-# this next part is a bit strange. We compile graphviz_parser.cpp twice.
-# Once with for undirected graphs with GRAPHVIZ_DIRECTED=0
-# and once for directed graphs with GRAPHVIZ_DIRECTED=1.
-
-graphviz_graph_parser.o: graphviz_graph_parser.cpp
- $(CXX) -DGRAPHVIZ_DIRECTED=0 $(CXXFLAGS) -c graphviz_graph_parser.cpp -o graphviz_graph_parser.o
-
-graphviz_digraph_parser.o: graphviz_digraph_parser.cpp
- $(CXX) -DGRAPHVIZ_DIRECTED=1 $(CXXFLAGS) -c graphviz_digraph_parser.cpp -o graphviz_digraph_parser.o
-
-graphviz_graph_lex.o: graphviz_graph_lex.cpp graphviz_graph_parser.hpp
- $(CXX) -DGRAPHVIZ_DIRECTED=0 $(CXXFLAGS) -c graphviz_graph_lex.cpp
-
-graphviz_digraph_lex.o: graphviz_digraph_lex.cpp graphviz_digraph_parser.hpp
- $(CXX) -DGRAPHVIZ_DIRECTED=1 $(CXXFLAGS) -c graphviz_digraph_lex.cpp
-
-graphviz_graph_lex.cpp: graphviz_lex.ll
- $(LEX) -Pbgl_undir_ -ographviz_graph_lex.cpp graphviz_lex.ll
-
-graphviz_digraph_lex.cpp: graphviz_lex.ll
- $(LEX) -Pbgl_dir_ -ographviz_digraph_lex.cpp graphviz_lex.ll
-
-graphviz_graph_parser.cpp graphviz_graph_parser.hpp: graphviz_parser.yy
- $(YACC) -p bgl_undir_ -d -v -o graphviz_graph_parser.cpp graphviz_parser.yy
- mv graphviz_graph_parser.cpp tmp_graphviz_graph_parser.cpp
- echo "#define GRAPHVIZ_DIRECTED 0" > graphviz_graph_parser.cpp
- cat tmp_graphviz_graph_parser.cpp >> graphviz_graph_parser.cpp
- rm tmp_graphviz_graph_parser.cpp
-
-graphviz_digraph_parser.cpp graphviz_digraph_parser.hpp: graphviz_parser.yy
- $(YACC) -p bgl_dir_ -d -v -o graphviz_digraph_parser.cpp graphviz_parser.yy
- mv graphviz_digraph_parser.cpp tmp_graphviz_digraph_parser.cpp
- echo "#define GRAPHVIZ_DIRECTED 1" > graphviz_digraph_parser.cpp
- cat tmp_graphviz_digraph_parser.cpp >> graphviz_digraph_parser.cpp
- rm tmp_graphviz_digraph_parser.cpp
-
-clean:
- /bin/rm -rf *.o *.a *.so* *.output graphviz_digraph_parser.cpp graphviz_digraph_parser.hpp graphviz_graph_parser.cpp graphviz_graph_parser.hpp graphviz_digraph_lex.cpp graphviz_graph_lex.cpp