COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/test/makefile @ 459:68e6873f421a

Last change on this file since 459:68e6873f421a was 435:8f1dece01cc4, checked in by marci, 20 years ago

misc

File size: 674 bytes
Line 
1#CXX3 := $(shell type -p g++-3.4 || shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
2CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
3CXX2 = g++-2.95
4CXX=$(CXX3)
5CC=$(CXX)
6INCLUDEDIRS ?= -I../include -I.. -I../work/{marci,jacint,alpar,klao,akos,athos}
7CXXFLAGS = -W -Wall -ansi -pedantic -O3 $(INCLUDEDIRS)
8LEDAROOT ?= /ledasrc/LEDA-4.1
9
10BINARIES = dijkstra_heap_test
11
12all: $(BINARIES)
13
14.depend dep depend:
15        -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
16
17makefile: .depend
18sinclude .depend
19
20clean:
21        $(RM) *.o $(BINARIES) .depend
22
23.PHONY: all clean dep depend
Note: See TracBrowser for help on using the repository browser.