src/work/marci/leda/makefile
changeset 433 d9fac1497298
parent 420 a713f8a69cc3
child 446 77ef5c7a57d9
     1.1 --- a/src/work/marci/leda/makefile	Mon Apr 26 18:22:34 2004 +0000
     1.2 +++ b/src/work/marci/leda/makefile	Tue Apr 27 08:19:39 2004 +0000
     1.3 @@ -1,31 +1,12 @@
     1.4  CXX2 = g++-2.95
     1.5 -#CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
     1.6  CXX3=$(CXX)
     1.7 -#CXX=$(CXX3)
     1.8 -#CC=$(CXX)
     1.9 -#LEDAROOT ?= /ledasrc/LEDA-4.1
    1.10  BOOSTROOT ?= /home/marci/boost
    1.11  INCLUDEDIRS ?= -I../../../include -I../.. -I../../{marci,jacint,alpar,klao,akos,athos} -I$(LEDAROOT)/incl -I.
    1.12  LDFLAGS = -L$(LEDAROOT) -lG -lL -lm
    1.13 -#LEDAINCLUDE ?= -I$(LEDAROOT)/incl
    1.14 -#CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic -ftemplate-depth-30
    1.15  
    1.16  BINARIES = bipartite_matching_leda
    1.17 -#LEDABINARIES = leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo
    1.18 -#BINARIES = edmonds_karp_demo iterator_bfs_demo macro_test lg_vs_sg bfsit_vs_byhand bipartite_graph_wrapper_test bipartite_matching_try
    1.19 -#gw_vs_not preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar preflow_demo_leda
    1.20  
    1.21  include ../../makefile
    1.22 -#all: $(BINARIES)
    1.23 -
    1.24 -#.depend dep depend:
    1.25 -#	-$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
    1.26 -#	-g++ $(INCLUDEDIRS) $(LEDAINCLUDE) -M $(LEDABINARIES:=.cc) >> .depend #2>/dev/null
    1.27 -
    1.28 -
    1.29 -
    1.30 -#makefile: .depend
    1.31 -#sinclude .depend
    1.32  
    1.33  leda_graph_demo.o:
    1.34  	$(CXX3) -Wall -O -I.. -I../alpar -I$(LEDAROOT)/incl -I. -c leda_graph_demo.cc
    1.35 @@ -33,12 +14,6 @@
    1.36  leda_graph_demo: leda_graph_demo.o
    1.37  	$(CXX3) -Wall -O -L$(LEDAROOT) -o leda_graph_demo leda_graph_demo.o -lG -lL -lm
    1.38  
    1.39 -#bipartite_matching_leda.o:
    1.40 -#	$(CXX3) $(CXXFLAGS) -I$(LEDAROOT)/incl -c bipartite_matching_leda.cc
    1.41 -#
    1.42 -#bipartite_matching_leda: bipartite_matching_leda.o
    1.43 -#	$(CXX3) $(CXXFLAGS) -L$(LEDAROOT) -o bipartite_matching_leda bipartite_matching_leda.o -lG -lL -lm
    1.44 -
    1.45  max_bipartite_matching_demo.o:
    1.46  	$(CXX3) $(CXXFLAGS) -I$(LEDAROOT)/incl -c max_bipartite_matching_demo.cc
    1.47  
    1.48 @@ -51,16 +26,9 @@
    1.49  leda_bfs_dfs: leda_bfs_dfs.o
    1.50  	$(CXX3) -Wall -O -L$(LEDAROOT) -o leda_bfs_dfs leda_bfs_dfs.o -lG -lL -lm
    1.51  
    1.52 -#edmonds_karp_demo: 
    1.53 -#	$(CXX3) $(CXXFLAGS) -o edmonds_karp_demo edmonds_karp_demo.cc
    1.54 -#	$(CXX3) $(CXXFLAGS) -pg -o edmonds_karp_demo_prof edmonds_karp_demo.cc
    1.55 -
    1.56  gw_vs_not: 
    1.57  	$(CXX3) $(CXXFLAGS) -o gw_vs_not gw_vs_not.cc
    1.58  
    1.59 -#lg_vs_sg:
    1.60 -#	$(CXX3) $(CXXFLAGS) -g -I. -I.. -o lg_vs_sg lg_vs_sg.cc
    1.61 -
    1.62  edmonds_karp_demo_alpar: 
    1.63  	$(CXX3) $(CXXFLAGS) -I. -I.. -I../alpar -o edmonds_karp_demo_alpar edmonds_karp_demo_alpar.cc
    1.64  
    1.65 @@ -82,7 +50,3 @@
    1.66  preflow_demo_athos: 
    1.67  	$(CXX3) $(CXXFLAGS) -I. -I.. -I../athos -o preflow_demo_athos preflow_demo_athos.cc
    1.68  
    1.69 -#clean:
    1.70 -#	$(RM) *.o $(BINARIES) .depend
    1.71 -#
    1.72 -#.PHONY: all clean dep depend