COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/jacint/makefile @ 281:3fefabfd00b7

Last change on this file since 281:3fefabfd00b7 was 220:7deda4d6a07a, checked in by jacint, 20 years ago

* empty log message *

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