diff -r 82f6987d6d2e -r f505c414feb9 src/work/jacint_makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/work/jacint_makefile Fri Jan 23 22:26:13 2004 +0000 @@ -0,0 +1,9 @@ +CCFLAGS = -Wall -ansi +CXXFLAGS = -Wall -ansi -I. -g +CC = g++-3.0 + +flow_test: flow_test.cc marci_list_graph.hh reverse_bfs.hh preflow_push_hl.hh marci_graph_traits.hh marci_property_vector.hh preflow_push_max_flow.hh dijkstra.hh + $(CXX) $(CXXFLAGS) -o flow_test flow_test.cc + +marci_graph_demo: marci_graph_demo.cc marci_graph_traits.hh marci_list_graph.hh marci_property_vector.hh marci_bfs.hh marci_max_flow.hh + $(CC) $(CCFLAGS) -I. marci_graph_demo.cc -o marci_graph_demo