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
Line 
1CXX3 = g++-3.0
2CXX2 = g++-2.95
3CXXFLAGS = -W -Wall -ansi -pedantic
4LEDAROOT = /ledasrc/LEDA-4.1
5
6BINARIES = dijkstra
7
8all: $(BINARIES)
9
10makefile: .depend
11sinclude .depend
12
13preflow:
14        $(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../marci -o preflow preflow.cc
15
16dijkstra:
17        $(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../marci -o dijkstra dijkstra.cc
18
19prim:
20        $(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../marci -o prim prim.cc
21
22clean:
23        $(RM) *.o $(BINARIES) .depend
24
25.PHONY: all clean dep depend
Note: See TracBrowser for help on using the repository browser.