src/work/jacint/makefile
author jacint
Tue, 27 Apr 2004 23:01:15 +0000
changeset 453 f6731902c702
parent 452 6636be9bc35e
child 454 0cd33e3e60cb
permissions -rw-r--r--
(none)
     1 CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
     2 CXX2 = g++-2.95
     3 CXX=$(CXX3)
     4 CC=$(CXX)
     5 INCLUDEDIRS ?= -I../../include -I.. -I../{marci,jacint,alpar,klao,akos,athos,johanna} 
     6 CXXFLAGS = -W -Wall -ansi -pedantic -O3 $(INCLUDEDIRS)
     7 LEDAROOT ?= /ledasrc/LEDA-4.1
     8 
     9 BINARIES = preflow
    10 
    11 
    12 all: $(BINARIES)
    13 
    14 .depend dep depend:
    15 	-$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
    16 
    17 makefile: .depend
    18 sinclude .depend
    19 
    20 clean:
    21 	$(RM) *.o $(BINARIES) .depend
    22 
    23 .PHONY: all clean dep depend