# HG changeset patch # User jacint # Date 1074634109 0 # Node ID d7321cdf5664725b5b4bd99eb8c9ce625e3d1fa3 # Parent a72cac00e2748da694f45e04dc6de0296d925922 makefile for the flow algorithms by jacint diff -r a72cac00e274 -r d7321cdf5664 src/work/jacint_makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/work/jacint_makefile Tue Jan 20 21:28:29 2004 +0000 @@ -0,0 +1,10 @@ +CCFLAGS = -Wall -ansi +CXXFLAGS = -Wall -ansi -I. -g +CC = g++-3.0 + +proba: proba.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 + + $(CXX) $(CXXFLAGS) -o proba proba.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