author | jacint |
Tue, 27 Apr 2004 23:00:42 +0000 | |
changeset 452 | 6636be9bc35e |
parent 441 | bb61e80e8aa1 |
child 453 | f6731902c702 |
permissions | -rw-r--r-- |
1 CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
2 CXX2 = g++-2.95
3 CXX=$(CXX3)
4 CC=$(CXX)
5 INCLUDEDIRS ?= -I../../include -I.. -I../{marci,jacint,alpar,klao,akos,athos}
6 CXXFLAGS = -W -Wall -ansi -pedantic -O3 $(INCLUDEDIRS)
7 LEDAROOT ?= /ledasrc/LEDA-4.1
9 BINARIES = preflow_excess_test
12 all: $(BINARIES)
14 .depend dep depend:
15 -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
17 makefile: .depend
18 sinclude .depend
20 clean:
21 $(RM) *.o $(BINARIES) .depend
23 .PHONY: all clean dep depend