COIN-OR::LEMON - Graph Library

Changeset 313:30c5179f296b in lemon-0.x


Ignore:
Timestamp:
04/07/04 13:02:00 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@431
Message:

marci makes makefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/athos/makefile

    r201 r313  
    1 CXXFLAGS = -Wall -ansi -g
    2 CXX = g++-3.0
     1CXX2 = g++-2.95
     2CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
     3CXX=$(CXX3)
     4CC=$(CXX)
     5#LEDAROOT ?= /ledasrc/LEDA-4.1
     6#BOOSTROOT ?= /home/marci/boost
     7INCLUDEDIRS ?= -I../../include -I.. -I../{marci,jacint,alpar,klao,akos,athos} #-I$(BOOSTROOT)
     8#LEDAINCLUDE ?= -I$(LEDAROOT)/incl
     9CXXFLAGS = -g -O -W -Wall $(INCLUDEDIRS) -ansi -pedantic
    310
    4 pf_demo: pf_demo.cc ../marci_graph_traits.hh ../list_graph.hh ../marci_property_vector.hh preflow_push.hh reverse_bfs.hh
    5         $(CXX) $(CXXFLAGS) -I. -I.. pf_demo.cc -o pf_demo
     11#LEDABINARIES = lg_vs_sg leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo
     12BINARIES = suurballe
     13#gw_vs_not preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar preflow_demo_leda
     14
     15all: $(BINARIES)
     16
     17.depend dep depend:
     18        -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
     19#       -g++ $(INCLUDEDIRS) $(LEDAINCLUDE) -M $(LEDABINARIES:=.cc) >> .depend #2>/dev/null
    620
    721
     22
     23makefile: .depend
     24sinclude .depend
     25
     26clean:
     27        $(RM) *.o $(BINARIES) .depend
     28
     29.PHONY: all clean dep depend
Note: See TracChangeset for help on using the changeset viewer.