marci@180: #CXX3 = g++-3.0
marci@73: CXX2 = g++-2.95
marci@180: #CXX3.3 = g++
marci@180: CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
marci@180: #CXXFLAGS = -W -Wall -ansi -pedantic -I. -I.. -I../alpar
marci@196: #LEDAROOT ?= /ledasrc/LEDA-4.1
marci@180: BOOSTROOT ?= /home/marci/boost
marci@180: INCLUDEDIRS ?= -I../../include -I.. -I. -I../{marci,jacint,alpar,klao,akos,athos} -I$(LEDAROOT)/incl -I$(BOOSTROOT)
marci@180: CXXFLAGS = -g -O -W -Wall $(INCLUDEDIRS) -ansi -pedantic
marci@73: 
marci@196: LEDABINARIES = lg_vs_sg leda_graph_demo leda_bfs_dfs
marci@196: BINARIES = edmonds_karp_demo max_bipartite_matching_demo
marci@196: #preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar preflow_demo_leda
marci@73: 
marci@73: all: $(BINARIES)
marci@73: 
marci@73: .depend dep depend:
marci@180: 	-g++ $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
marci@180: 
marci@73: 
marci@73: 
marci@73: makefile: .depend
marci@73: sinclude .depend
marci@73: 
marci@180: leda_graph_demo.o:
marci@188: 	$(CXX3) -Wall -O -I.. -I../alpar -I$(LEDAROOT)/incl -I. -c leda_graph_demo.cc
marci@180: 
marci@180: leda_graph_demo: leda_graph_demo.o
marci@188: 	$(CXX3) -Wall -O -L$(LEDAROOT) -o leda_graph_demo leda_graph_demo.o -lG -lL -lm
marci@180: 
marci@194: max_bipartite_matching_demo.o:
marci@194: 	$(CXX3) -Wall -O -I.. -I../alpar -I$(LEDAROOT)/incl -I. -c max_bipartite_matching_demo.cc
marci@194: 
marci@194: max_bipartite_matching_demo: max_bipartite_matching_demo.o
marci@194: 	$(CXX3) -Wall -O -L$(LEDAROOT) -o max_bipartite_matching_demo max_bipartite_matching_demo.o -lG -lL -lm
marci@194: 
marci@189: leda_bfs_dfs.o:
marci@189: 	$(CXX3) -Wall -O -I.. -I../alpar -I$(LEDAROOT)/incl -I. -c leda_bfs_dfs.cc
marci@189: 
marci@189: leda_bfs_dfs: leda_bfs_dfs.o
marci@189: 	$(CXX3) -Wall -O -L$(LEDAROOT) -o leda_bfs_dfs leda_bfs_dfs.o -lG -lL -lm
marci@189: 
marci@73: edmonds_karp_demo: 
marci@174: 	$(CXX3) $(CXXFLAGS) -g -I. -I.. -o edmonds_karp_demo edmonds_karp_demo.cc
marci@188: 	$(CXX3) $(CXXFLAGS) -g -pg -I. -I.. -o edmonds_karp_demo_prof edmonds_karp_demo.cc
marci@174: 
marci@174: lg_vs_sg:
marci@188: 	$(CXX3) $(CXXFLAGS) -g -I. -I.. -o lg_vs_sg lg_vs_sg.cc
marci@73: 
marci@96: edmonds_karp_demo_alpar: 
marci@188: 	$(CXX3) $(CXXFLAGS) -I. -I.. -I../alpar -o edmonds_karp_demo_alpar edmonds_karp_demo_alpar.cc
marci@96: 
marci@73: preflow_demo_leda:
marci@188: 	$(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: 
klao@125: preflow_demo_leda_uj:
marci@180: 	$(CXX3) -Wall -O3 -I$(LEDAROOT)/incl -I. -L$(LEDAROOT) -o preflow_demo_leda_uj preflow_demo_leda_uj.cc -lG -lL -lm
klao@125: 
marci@73: preflow_demo_boost:
marci@73: 	$(CXX2) -ftemplate-depth-30 -O3 -I. -I/home/marci/boost -o preflow_demo_boost preflow_demo_boost.cc
marci@73: 
marci@73: edmonds_karp_demo_boost:
marci@73: 	$(CXX2) -ftemplate-depth-30 -O3 -I. -I/home/marci/boost -o edmonds_karp_demo_boost edmonds_karp_demo_boost.cc
marci@73: 
marci@82: preflow_demo_jacint: 
marci@188: 	$(CXX3) $(CXXFLAGS) -I. -I.. -I../jacint -o preflow_demo_jacint preflow_demo_jacint.cc
marci@82: 
marci@82: preflow_demo_athos: 
marci@188: 	$(CXX3) $(CXXFLAGS) -I. -I.. -I../athos -o preflow_demo_athos preflow_demo_athos.cc
marci@82: 
marci@73: clean:
marci@73: 	$(RM) *.o $(BINARIES) .depend
marci@73: 
marci@73: .PHONY: all clean dep depend