- Timestamp:
- 01/11/09 19:37:48 (4 years ago)
- Branches:
- master, python3
- Children:
- 7e99be
- Parents:
- 8cd708
- git-author:
- Tiago de Paula Peixoto <tiago@…> (01/11/09 18:43:21)
- git-committer:
- Tiago de Paula Peixoto <tiago@…> (01/11/09 19:37:48)
- Location:
- src/graph/stats
- Files:
-
- 2 added
- 2 edited
-
Makefile.am (modified) (3 diffs)
-
graph_average.cc (added)
-
graph_average.hh (added)
-
graph_stats_bind.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/graph/stats/Makefile.am
r1c8432 r300589 1 1 ## Process this file with automake to produce Makefile.in 2 2 3 AM_CPPFLAGS =\ 4 -I$(srcdir)/.. \ 5 -I$(srcdir)/../../boost-workaround \ 6 -DHAVE_CONFIG_H 3 AM_CPPFLAGS = $(MOD_CPPFLAGS) 7 4 8 AM_C FLAGS=$(AM_CXXFLAGS)5 AM_CXXFLAGS = $(CXXFLAGS) 9 6 10 7 libgraph_tool_statsdir = $(pythondir)/graph_tool/stats … … 17 14 graph_components.cc \ 18 15 graph_histograms.cc \ 16 graph_average.cc \ 19 17 graph_parallel.cc \ 20 18 graph_stats_bind.cc … … 23 21 graph_components.hh \ 24 22 graph_parallel.hh \ 25 graph_histograms.hh 23 graph_histograms.hh \ 24 graph_average.hh 26 25 27 libgraph_tool_stats_la_LIBADD = \ 28 $(PYTHON_LDFLAGS) \ 29 $(BOOST_LDFLAGS) \ 30 $(OPENMP_LDFLAGS) \ 31 -lboost_python \ 32 -lboost_iostreams \ 33 -lexpat 26 libgraph_tool_stats_la_LIBADD = $(MOD_LIBADD) 34 27 35 # needed for typeinfo objects to work across DSO boundaries. 36 # see http://gcc.gnu.org/faq.html#dso 37 libgraph_tool_stats_la_LDFLAGS = \ 38 -module \ 39 -avoid-version \ 40 -export-dynamic \ 41 -no-undefined \ 42 -Wl,-E 28 libgraph_tool_stats_la_LDFLAGS = $(MOD_LDFLAGS) -
src/graph/stats/graph_stats_bind.cc
r780a80 r300589 21 21 void export_parallel(); 22 22 void export_histograms(); 23 void export_average(); 23 24 24 25 BOOST_PYTHON_MODULE(libgraph_tool_stats) … … 27 28 export_parallel(); 28 29 export_histograms(); 30 export_average(); 29 31 }
Note: See TracChangeset
for help on using the changeset viewer.


