COIN-OR::LEMON - Graph Library

Changeset 483:ce29ae5b2e1b in lemon-0.x for src/test


Ignore:
Timestamp:
04/29/04 19:00:44 (20 years ago)
Author:
beckerjc
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@640
Message:

UnionFind? moved to include. Test compiles and runs cleanly.

  • test/makefile: minor cleanups
Location:
src/test
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • src/test/makefile

    r460 r483  
    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++)
    2 CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
    3 CXX2 = g++-2.95
    4 CXX=$(CXX3)
     1INCLUDEDIRS ?= -I../include
     2CXXFLAGS += -Wall -O3 -ansi -pedantic $(INCLUDEDIRS)
     3#LEDAROOT ?= /ledasrc/LEDA-4.1
     4
     5BINARIES = dijkstra_heap_test unionfind_test
     6
     7ifdef GCCVER
     8CXX := g++-$(GCCVER)
     9else
     10CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
     11endif
     12
    513CC=$(CXX)
    6 INCLUDEDIRS ?= -I../include -I.. -I../work/{marci,jacint,alpar,klao,akos,athos}
    7 CXXFLAGS = -W -Wall -ansi -pedantic -O3 $(INCLUDEDIRS)
    8 LEDAROOT ?= /ledasrc/LEDA-4.1
    9 
    10 BINARIES = dijkstra_heap_test
    1114
    1215all: $(BINARIES)
    1316
    1417.depend dep depend:
    15         -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
     18        $(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend
    1619
    1720makefile: .depend
Note: See TracChangeset for help on using the changeset viewer.