Changeset 433:d9fac1497298 in lemon-0.x for src/work/marci/leda
- Timestamp:
- 04/27/04 10:19:39 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@580
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/leda/makefile
r420 r433 1 1 CXX2 = g++-2.95 2 #CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)3 2 CXX3=$(CXX) 4 #CXX=$(CXX3)5 #CC=$(CXX)6 #LEDAROOT ?= /ledasrc/LEDA-4.17 3 BOOSTROOT ?= /home/marci/boost 8 4 INCLUDEDIRS ?= -I../../../include -I../.. -I../../{marci,jacint,alpar,klao,akos,athos} -I$(LEDAROOT)/incl -I. 9 5 LDFLAGS = -L$(LEDAROOT) -lG -lL -lm 10 #LEDAINCLUDE ?= -I$(LEDAROOT)/incl11 #CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic -ftemplate-depth-3012 6 13 7 BINARIES = bipartite_matching_leda 14 #LEDABINARIES = leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo15 #BINARIES = edmonds_karp_demo iterator_bfs_demo macro_test lg_vs_sg bfsit_vs_byhand bipartite_graph_wrapper_test bipartite_matching_try16 #gw_vs_not preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar preflow_demo_leda17 8 18 9 include ../../makefile 19 #all: $(BINARIES)20 21 #.depend dep depend:22 # -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null23 # -g++ $(INCLUDEDIRS) $(LEDAINCLUDE) -M $(LEDABINARIES:=.cc) >> .depend #2>/dev/null24 25 26 27 #makefile: .depend28 #sinclude .depend29 10 30 11 leda_graph_demo.o: … … 33 14 leda_graph_demo: leda_graph_demo.o 34 15 $(CXX3) -Wall -O -L$(LEDAROOT) -o leda_graph_demo leda_graph_demo.o -lG -lL -lm 35 36 #bipartite_matching_leda.o:37 # $(CXX3) $(CXXFLAGS) -I$(LEDAROOT)/incl -c bipartite_matching_leda.cc38 #39 #bipartite_matching_leda: bipartite_matching_leda.o40 # $(CXX3) $(CXXFLAGS) -L$(LEDAROOT) -o bipartite_matching_leda bipartite_matching_leda.o -lG -lL -lm41 16 42 17 max_bipartite_matching_demo.o: … … 52 27 $(CXX3) -Wall -O -L$(LEDAROOT) -o leda_bfs_dfs leda_bfs_dfs.o -lG -lL -lm 53 28 54 #edmonds_karp_demo:55 # $(CXX3) $(CXXFLAGS) -o edmonds_karp_demo edmonds_karp_demo.cc56 # $(CXX3) $(CXXFLAGS) -pg -o edmonds_karp_demo_prof edmonds_karp_demo.cc57 58 29 gw_vs_not: 59 30 $(CXX3) $(CXXFLAGS) -o gw_vs_not gw_vs_not.cc 60 61 #lg_vs_sg:62 # $(CXX3) $(CXXFLAGS) -g -I. -I.. -o lg_vs_sg lg_vs_sg.cc63 31 64 32 edmonds_karp_demo_alpar: … … 83 51 $(CXX3) $(CXXFLAGS) -I. -I.. -I../athos -o preflow_demo_athos preflow_demo_athos.cc 84 52 85 #clean:86 # $(RM) *.o $(BINARIES) .depend87 #88 #.PHONY: all clean dep depend
Note: See TracChangeset
for help on using the changeset viewer.