author | alpar |
Wed, 21 Jan 2004 08:38:45 +0000 | |
changeset 28 | e2e97c3aa219 |
child 31 | d93bef0c4ed3 |
permissions | -rw-r--r-- |
jacint@24 | 1 |
CCFLAGS = -Wall -ansi |
jacint@24 | 2 |
CXXFLAGS = -Wall -ansi -I. -g |
jacint@24 | 3 |
CC = g++-3.0 |
jacint@24 | 4 |
|
jacint@24 | 5 |
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 |
jacint@24 | 6 |
|
jacint@24 | 7 |
$(CXX) $(CXXFLAGS) -o proba proba.cc |
jacint@24 | 8 |
|
jacint@24 | 9 |
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 |
jacint@24 | 10 |
$(CC) $(CCFLAGS) -I. marci_graph_demo.cc -o marci_graph_demo |