COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/jacint/makefile @ 252:35c2543f45fb

Last change on this file since 252:35c2543f45fb was 220:7deda4d6a07a, checked in by jacint, 20 years ago

* empty log message *

File size: 552 bytes
Line 
1CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
2CXX2 = g++-2.95
3CXXFLAGS = -W -Wall -ansi -pedantic -O3 -I. -I.. -I../marci -I../alpar -I../../include 
4LEDAROOT ?= /ledasrc/LEDA-4.1
5
6BINARIES = dijkstra prim preflow
7
8all: $(BINARIES)
9
10makefile: .depend
11sinclude .depend
12
13preflow:
14        $(CXX3) $(CXXFLAGS)  -o preflow preflow.cc
15
16dijkstra:
17        $(CXX3) $(CXXFLAGS)  -o dijkstra dijkstra.cc
18
19prim:
20        $(CXX3) $(CXXFLAGS)  -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.