diff options
author | Tim Moore <timoore@redhat.com> | 2009-12-01 19:05:09 +0100 |
---|---|---|
committer | Tim Moore <timoore@redhat.com> | 2009-12-02 19:39:37 +0100 |
commit | 6197b0dc80c4f87000d26213293fe2cb72fbe081 (patch) | |
tree | 23e7b4716f9d618e0891d67cee127c614177b370 /grapher/Makefile.am | |
parent | 06e217d9990635be43a59233d75c504385d1e243 (diff) | |
download | systemtap-steved-6197b0dc80c4f87000d26213293fe2cb72fbe081.tar.gz systemtap-steved-6197b0dc80c4f87000d26213293fe2cb72fbe081.tar.xz systemtap-steved-6197b0dc80c4f87000d26213293fe2cb72fbe081.zip |
Refactor drawing of different styles of graph into classes
* grapher/GraphStyle.cxx: New file
* grapher/GraphStyle.hxx: New file
* grapher/Graph(draw): Move much drawing code to GraphStyle::draw
Diffstat (limited to 'grapher/Makefile.am')
-rw-r--r-- | grapher/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grapher/Makefile.am b/grapher/Makefile.am index 73f4cd8c..5bca286a 100644 --- a/grapher/Makefile.am +++ b/grapher/Makefile.am @@ -7,7 +7,7 @@ man_MANS = stapgraph.1 # the libglade ones. stapgraph_CPPFLAGS = -DPKGDATADIR='"${pkgdatadir}"' stapgraph_CXXFLAGS = $(libglade_CFLAGS) -Wall -Werror -stapgraph_SOURCES = grapher.cxx StapParser.cxx Graph.cxx GraphWidget.cxx CairoWidget.cxx +stapgraph_SOURCES = grapher.cxx StapParser.cxx Graph.cxx GraphWidget.cxx CairoWidget.cxx GraphStyle.cxx stapgraph_LDADD = $(libglade_LIBS) dist_pkgdata_DATA = graph-dialog.glade stap-start.glade endif |