author | alpar |
Mon, 26 Apr 2004 09:00:12 +0000 | |
changeset 406 | e8377ac921b6 |
child 435 | 8f1dece01cc4 |
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../work/{marci,jacint,alpar,klao,akos,athos}
6 CXXFLAGS = -W -Wall -ansi -pedantic -O3 $(INCLUDEDIRS)
7 LEDAROOT ?= /ledasrc/LEDA-4.1
9 BINARIES = dijkstra_heap_test
11 all: $(BINARIES)
13 .depend dep depend:
14 -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
16 makefile: .depend
17 sinclude .depend
19 clean:
20 $(RM) *.o $(BINARIES) .depend
22 .PHONY: all clean dep depend