src/test/makefile
changeset 542 69bde1d90c04
parent 541 5c5d970ef2f0
child 543 2b031f790e7a
     1.1 --- a/src/test/makefile	Thu May 06 13:46:07 2004 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,26 +0,0 @@
     1.4 -INCLUDEDIRS ?= -I../include
     1.5 -CXXFLAGS += -W -Wall -O3 -ansi -pedantic $(INCLUDEDIRS) 
     1.6 -#LEDAROOT ?= /ledasrc/LEDA-4.1
     1.7 -
     1.8 -BINARIES = dijkstra_heap_test unionfind_test error_test
     1.9 -
    1.10 -ifdef GCCVER
    1.11 -CXX := g++-$(GCCVER)
    1.12 -else
    1.13 -CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
    1.14 -endif
    1.15 -
    1.16 -CC=$(CXX)
    1.17 -
    1.18 -all: $(BINARIES)
    1.19 -
    1.20 -.depend dep depend:
    1.21 -	$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend
    1.22 -
    1.23 -makefile: .depend
    1.24 -sinclude .depend
    1.25 -
    1.26 -clean:
    1.27 -	$(RM) *.o $(BINARIES) .depend
    1.28 -
    1.29 -.PHONY: all clean dep depend