COIN-OR::LEMON - Graph Library

Changeset 411:3c8801529a1f in lemon-0.x


Ignore:
Timestamp:
04/26/04 12:35:36 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@545
Message:

misc

Location:
src/work/marci
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/marci/makefile

    r409 r411  
    11CXX2 = g++-2.95
    22#CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
     3CXX3=$(CXX)
    34#CXX=$(CXX3)
    45#CC=$(CXX)
     
    67BOOSTROOT ?= /home/marci/boost
    78INCLUDEDIRS ?= -I../../include -I.. -I../{marci,jacint,alpar,klao,akos,athos} -I$(BOOSTROOT)
    8 LEDAINCLUDE ?= -I$(LEDAROOT)/incl
    9 CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic -ftemplate-depth-30
     9#LEDAINCLUDE ?= -I$(LEDAROOT)/incl
     10#CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic -ftemplate-depth-30
    1011
    1112LEDABINARIES = leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo
     
    3132        $(CXX3) -Wall -O -L$(LEDAROOT) -o leda_graph_demo leda_graph_demo.o -lG -lL -lm
    3233
     34bipartite_matching_leda.o:
     35        $(CXX3) $(CXXFLAGS) -I$(LEDAROOT)/incl -c bipartite_matching_leda.cc
     36
     37bipartite_matching_leda: bipartite_matching_leda.o
     38        $(CXX3) $(CXXFLAGS) -L$(LEDAROOT) -o bipartite_matching_leda bipartite_matching_leda.o -lG -lL -lm
     39
    3340max_bipartite_matching_demo.o:
    34         $(CXX3) -Wall -O -I.. -I../alpar -I$(LEDAROOT)/incl -I. -c max_bipartite_matching_demo.cc
     41        $(CXX3) $(CXXFLAGS) -I$(LEDAROOT)/incl -c max_bipartite_matching_demo.cc
    3542
    3643max_bipartite_matching_demo: max_bipartite_matching_demo.o
    37         $(CXX3) -Wall -O -L$(LEDAROOT) -o max_bipartite_matching_demo max_bipartite_matching_demo.o -lG -lL -lm
     44        $(CXX3) $(CXXFLAGS) -L$(LEDAROOT) -o max_bipartite_matching_demo max_bipartite_matching_demo.o -lG -lL -lm
    3845
    3946leda_bfs_dfs.o:
Note: See TracChangeset for help on using the changeset viewer.