COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/athos/makefile @ 313:30c5179f296b

Last change on this file since 313:30c5179f296b was 313:30c5179f296b, checked in by marci, 20 years ago

marci makes makefile

File size: 924 bytes
RevLine 
[313]1CXX2 = g++-2.95
2CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
3CXX=$(CXX3)
4CC=$(CXX)
5#LEDAROOT ?= /ledasrc/LEDA-4.1
6#BOOSTROOT ?= /home/marci/boost
7INCLUDEDIRS ?= -I../../include -I.. -I../{marci,jacint,alpar,klao,akos,athos} #-I$(BOOSTROOT)
8#LEDAINCLUDE ?= -I$(LEDAROOT)/incl
9CXXFLAGS = -g -O -W -Wall $(INCLUDEDIRS) -ansi -pedantic
[36]10
[313]11#LEDABINARIES = lg_vs_sg leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo
12BINARIES = suurballe
13#gw_vs_not preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar preflow_demo_leda
[36]14
[313]15all: $(BINARIES)
[36]16
[313]17.depend dep depend:
18        -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
19#       -g++ $(INCLUDEDIRS) $(LEDAINCLUDE) -M $(LEDABINARIES:=.cc) >> .depend #2>/dev/null
20
21
22
23makefile: .depend
24sinclude .depend
25
26clean:
27        $(RM) *.o $(BINARIES) .depend
28
29.PHONY: all clean dep depend
Note: See TracBrowser for help on using the repository browser.