COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/jacint/makefile @ 452:6636be9bc35e

Last change on this file since 452:6636be9bc35e was 452:6636be9bc35e, checked in by jacint, 20 years ago
File size: 546 bytes
RevLine 
[452]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
3CXX=$(CXX3)
4CC=$(CXX)
5INCLUDEDIRS ?= -I../../include -I.. -I../{marci,jacint,alpar,klao,akos,athos}
6CXXFLAGS = -W -Wall -ansi -pedantic -O3 $(INCLUDEDIRS)
7LEDAROOT ?= /ledasrc/LEDA-4.1
8
9BINARIES = preflow_excess_test
10
11
12all: $(BINARIES)
13
14.depend dep depend:
15        -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
16
17makefile: .depend
18sinclude .depend
19
20clean:
21        $(RM) *.o $(BINARIES) .depend
22
23.PHONY: all clean dep depend
Note: See TracBrowser for help on using the repository browser.