src/work/marci/makefile
changeset 194 a1680b3c516c
parent 189 04becc472709
child 196 8a9b9360463e
     1.1 --- a/src/work/marci/makefile	Wed Mar 17 15:01:04 2004 +0000
     1.2 +++ b/src/work/marci/makefile	Wed Mar 17 15:09:48 2004 +0000
     1.3 @@ -9,7 +9,7 @@
     1.4  CXXFLAGS = -g -O -W -Wall $(INCLUDEDIRS) -ansi -pedantic
     1.5  
     1.6  
     1.7 -BINARIES = edmonds_karp_demo preflow_demo_leda lg_vs_sg leda_graph_demo leda_bfs_dfs
     1.8 +BINARIES = edmonds_karp_demo preflow_demo_leda lg_vs_sg leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo
     1.9  #preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar
    1.10  
    1.11  all: $(BINARIES)
    1.12 @@ -28,6 +28,12 @@
    1.13  leda_graph_demo: leda_graph_demo.o
    1.14  	$(CXX3) -Wall -O -L$(LEDAROOT) -o leda_graph_demo leda_graph_demo.o -lG -lL -lm
    1.15  
    1.16 +max_bipartite_matching_demo.o:
    1.17 +	$(CXX3) -Wall -O -I.. -I../alpar -I$(LEDAROOT)/incl -I. -c max_bipartite_matching_demo.cc
    1.18 +
    1.19 +max_bipartite_matching_demo: max_bipartite_matching_demo.o
    1.20 +	$(CXX3) -Wall -O -L$(LEDAROOT) -o max_bipartite_matching_demo max_bipartite_matching_demo.o -lG -lL -lm
    1.21 +
    1.22  leda_bfs_dfs.o:
    1.23  	$(CXX3) -Wall -O -I.. -I../alpar -I$(LEDAROOT)/incl -I. -c leda_bfs_dfs.cc
    1.24