makefile for the flow algorithms by jacint
authorjacint
Tue, 20 Jan 2004 21:28:29 +0000
changeset 24d7321cdf5664
parent 23 a72cac00e274
child 25 cd635fee7452
makefile for the flow algorithms by jacint
src/work/jacint_makefile
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/work/jacint_makefile	Tue Jan 20 21:28:29 2004 +0000
     1.3 @@ -0,0 +1,10 @@
     1.4 +CCFLAGS = -Wall -ansi
     1.5 +CXXFLAGS = -Wall -ansi -I. -g
     1.6 +CC = g++-3.0
     1.7 +
     1.8 +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
     1.9 +
    1.10 +	$(CXX) $(CXXFLAGS) -o proba proba.cc
    1.11 +
    1.12 +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
    1.13 +	$(CC) $(CCFLAGS) -I. marci_graph_demo.cc -o marci_graph_demo