| author | beckerjc |
| Wed, 03 Mar 2004 19:16:48 +0000 | |
| changeset 150 | 4b5210aa0239 |
| parent 131 | 9aca797b87e8 |
| child 159 | 0defa5aa1229 |
| permissions | -rw-r--r-- |
| jacint@111 | 1 |
CXX3 = g++-3.0 |
| jacint@111 | 2 |
CXX2 = g++-2.95 |
| jacint@111 | 3 |
CXXFLAGS = -W -Wall -ansi -pedantic |
| jacint@111 | 4 |
LEDAROOT = /ledasrc/LEDA-4.1 |
| jacint@72 | 5 |
|
| jacint@142 | 6 |
BINARIES = preflow |
| jacint@72 | 7 |
|
| jacint@111 | 8 |
all: $(BINARIES) |
| jacint@111 | 9 |
|
| jacint@111 | 10 |
makefile: .depend |
| jacint@111 | 11 |
sinclude .depend |
| jacint@111 | 12 |
|
| jacint@111 | 13 |
preflow: |
| jacint@142 | 14 |
$(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../marci -o preflow preflow.cc |
| jacint@111 | 15 |
|
| jacint@111 | 16 |
clean: |
| jacint@111 | 17 |
$(RM) *.o $(BINARIES) .depend |
| jacint@111 | 18 |
|
| jacint@111 | 19 |
.PHONY: all clean dep depend |