author | marci |
Mon, 26 Apr 2004 16:21:36 +0000 | |
changeset 420 | a713f8a69cc3 |
parent 419 | 69e961722628 |
child 433 | d9fac1497298 |
permissions | -rw-r--r-- |
marci@73 | 1 |
CXX2 = g++-2.95 |
marci@389 | 2 |
#CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++) |
marci@411 | 3 |
CXX3=$(CXX) |
marci@389 | 4 |
#CXX=$(CXX3) |
marci@389 | 5 |
#CC=$(CXX) |
marci@196 | 6 |
#LEDAROOT ?= /ledasrc/LEDA-4.1 |
marci@180 | 7 |
BOOSTROOT ?= /home/marci/boost |
marci@420 | 8 |
INCLUDEDIRS ?= -I../../../include -I../.. -I../../{marci,jacint,alpar,klao,akos,athos} -I$(LEDAROOT)/incl -I. |
marci@420 | 9 |
LDFLAGS = -L$(LEDAROOT) -lG -lL -lm |
marci@411 | 10 |
#LEDAINCLUDE ?= -I$(LEDAROOT)/incl |
marci@411 | 11 |
#CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic -ftemplate-depth-30 |
marci@73 | 12 |
|
marci@420 | 13 |
BINARIES = bipartite_matching_leda |
marci@420 | 14 |
#LEDABINARIES = leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo |
marci@420 | 15 |
#BINARIES = edmonds_karp_demo iterator_bfs_demo macro_test lg_vs_sg bfsit_vs_byhand bipartite_graph_wrapper_test bipartite_matching_try |
marci@303 | 16 |
#gw_vs_not preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar preflow_demo_leda |
marci@73 | 17 |
|
marci@420 | 18 |
include ../../makefile |
marci@389 | 19 |
#all: $(BINARIES) |
marci@73 | 20 |
|
marci@389 | 21 |
#.depend dep depend: |
marci@389 | 22 |
# -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null |
marci@259 | 23 |
# -g++ $(INCLUDEDIRS) $(LEDAINCLUDE) -M $(LEDABINARIES:=.cc) >> .depend #2>/dev/null |
marci@180 | 24 |
|
marci@73 | 25 |
|
marci@73 | 26 |
|
marci@389 | 27 |
#makefile: .depend |
marci@389 | 28 |
#sinclude .depend |
marci@73 | 29 |
|
marci@180 | 30 |
leda_graph_demo.o: |
marci@188 | 31 |
$(CXX3) -Wall -O -I.. -I../alpar -I$(LEDAROOT)/incl -I. -c leda_graph_demo.cc |
marci@180 | 32 |
|
marci@180 | 33 |
leda_graph_demo: leda_graph_demo.o |
marci@188 | 34 |
$(CXX3) -Wall -O -L$(LEDAROOT) -o leda_graph_demo leda_graph_demo.o -lG -lL -lm |
marci@180 | 35 |
|
marci@420 | 36 |
#bipartite_matching_leda.o: |
marci@420 | 37 |
# $(CXX3) $(CXXFLAGS) -I$(LEDAROOT)/incl -c bipartite_matching_leda.cc |
marci@420 | 38 |
# |
marci@420 | 39 |
#bipartite_matching_leda: bipartite_matching_leda.o |
marci@420 | 40 |
# $(CXX3) $(CXXFLAGS) -L$(LEDAROOT) -o bipartite_matching_leda bipartite_matching_leda.o -lG -lL -lm |
marci@411 | 41 |
|
marci@194 | 42 |
max_bipartite_matching_demo.o: |
marci@411 | 43 |
$(CXX3) $(CXXFLAGS) -I$(LEDAROOT)/incl -c max_bipartite_matching_demo.cc |
marci@194 | 44 |
|
marci@194 | 45 |
max_bipartite_matching_demo: max_bipartite_matching_demo.o |
marci@411 | 46 |
$(CXX3) $(CXXFLAGS) -L$(LEDAROOT) -o max_bipartite_matching_demo max_bipartite_matching_demo.o -lG -lL -lm |
marci@194 | 47 |
|
marci@189 | 48 |
leda_bfs_dfs.o: |
marci@189 | 49 |
$(CXX3) -Wall -O -I.. -I../alpar -I$(LEDAROOT)/incl -I. -c leda_bfs_dfs.cc |
marci@189 | 50 |
|
marci@189 | 51 |
leda_bfs_dfs: leda_bfs_dfs.o |
marci@189 | 52 |
$(CXX3) -Wall -O -L$(LEDAROOT) -o leda_bfs_dfs leda_bfs_dfs.o -lG -lL -lm |
marci@189 | 53 |
|
marci@376 | 54 |
#edmonds_karp_demo: |
marci@376 | 55 |
# $(CXX3) $(CXXFLAGS) -o edmonds_karp_demo edmonds_karp_demo.cc |
marci@259 | 56 |
# $(CXX3) $(CXXFLAGS) -pg -o edmonds_karp_demo_prof edmonds_karp_demo.cc |
marci@174 | 57 |
|
marci@271 | 58 |
gw_vs_not: |
marci@271 | 59 |
$(CXX3) $(CXXFLAGS) -o gw_vs_not gw_vs_not.cc |
marci@271 | 60 |
|
marci@380 | 61 |
#lg_vs_sg: |
marci@380 | 62 |
# $(CXX3) $(CXXFLAGS) -g -I. -I.. -o lg_vs_sg lg_vs_sg.cc |
marci@73 | 63 |
|
marci@96 | 64 |
edmonds_karp_demo_alpar: |
marci@188 | 65 |
$(CXX3) $(CXXFLAGS) -I. -I.. -I../alpar -o edmonds_karp_demo_alpar edmonds_karp_demo_alpar.cc |
marci@96 | 66 |
|
marci@73 | 67 |
preflow_demo_leda: |
marci@188 | 68 |
$(CXX2) -W -Wall -03 -DLEDA_PREFIX -I. -I$(LEDAROOT)/incl -L$(LEDAROOT) -o preflow_demo_leda preflow_demo_leda.cc -lP -lm -lL -lG |
marci@73 | 69 |
|
klao@125 | 70 |
preflow_demo_leda_uj: |
marci@180 | 71 |
$(CXX3) -Wall -O3 -I$(LEDAROOT)/incl -I. -L$(LEDAROOT) -o preflow_demo_leda_uj preflow_demo_leda_uj.cc -lG -lL -lm |
klao@125 | 72 |
|
marci@73 | 73 |
preflow_demo_boost: |
marci@73 | 74 |
$(CXX2) -ftemplate-depth-30 -O3 -I. -I/home/marci/boost -o preflow_demo_boost preflow_demo_boost.cc |
marci@73 | 75 |
|
marci@73 | 76 |
edmonds_karp_demo_boost: |
marci@73 | 77 |
$(CXX2) -ftemplate-depth-30 -O3 -I. -I/home/marci/boost -o edmonds_karp_demo_boost edmonds_karp_demo_boost.cc |
marci@73 | 78 |
|
marci@82 | 79 |
preflow_demo_jacint: |
marci@188 | 80 |
$(CXX3) $(CXXFLAGS) -I. -I.. -I../jacint -o preflow_demo_jacint preflow_demo_jacint.cc |
marci@82 | 81 |
|
marci@82 | 82 |
preflow_demo_athos: |
marci@188 | 83 |
$(CXX3) $(CXXFLAGS) -I. -I.. -I../athos -o preflow_demo_athos preflow_demo_athos.cc |
marci@82 | 84 |
|
marci@389 | 85 |
#clean: |
marci@389 | 86 |
# $(RM) *.o $(BINARIES) .depend |
marci@389 | 87 |
# |
marci@389 | 88 |
#.PHONY: all clean dep depend |