COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/jacint/makefile @ 170:9091b1ebca27

Last change on this file since 170:9091b1ebca27 was 170:9091b1ebca27, checked in by jacint, 20 years ago

* empty log message *

File size: 468 bytes
RevLine 
[111]1CXX3 = g++-3.0
2CXX2 = g++-2.95
3CXXFLAGS = -W -Wall -ansi -pedantic
4LEDAROOT = /ledasrc/LEDA-4.1
[72]5
[166]6BINARIES = dijkstra
[72]7
[111]8all: $(BINARIES)
9
10makefile: .depend
11sinclude .depend
12
13preflow:
[142]14        $(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../marci -o preflow preflow.cc
[111]15
[159]16dijkstra:
17        $(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../marci -o dijkstra dijkstra.cc
18
[170]19prim:
20        $(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../marci -o prim prim.cc
21
[111]22clean:
23        $(RM) *.o $(BINARIES) .depend
24
25.PHONY: all clean dep depend
Note: See TracBrowser for help on using the repository browser.