changeset 36 | 7d539ea6ad26 |
child 201 | b9158a014fe8 |
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/work/athos/makefile Tue Jan 27 16:23:51 2004 +0000 1.3 @@ -0,0 +1,7 @@ 1.4 +CXXFLAGS = -Wall -ansi -g 1.5 +CXX = g++-3.0 1.6 + 1.7 +pf_demo: pf_demo.cc ../marci_graph_traits.hh ../marci_list_graph.hh ../marci_property_vector.hh preflow_push.hh ../reverse_bfs.hh 1.8 + $(CXX) $(CXXFLAGS) -I. -I.. pf_demo.cc -o pf_demo 1.9 + 1.10 +