COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/jacint/makefile @ 440:f92099d27236

Last change on this file since 440:f92099d27236 was 439:748791b4bd10, checked in by marci, 20 years ago

makefile

File size: 562 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
[311]3CXX=$(CXX3)
4CC=$(CXX)
5INCLUDEDIRS ?= -I../../include -I.. -I../{marci,jacint,alpar,klao,akos,athos}
[372]6CXXFLAGS = -W -Wall -ansi -pedantic -O3 $(INCLUDEDIRS)
[211]7LEDAROOT ?= /ledasrc/LEDA-4.1
[72]8
[439]9BINARIES = preflow_res_comp preflow_excess_test
[72]10
[111]11all: $(BINARIES)
12
[311]13.depend dep depend:
14        -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
15
[111]16makefile: .depend
17sinclude .depend
18
19clean:
20        $(RM) *.o $(BINARIES) .depend
21
22.PHONY: all clean dep depend
Note: See TracBrowser for help on using the repository browser.