| author | jacint |
| Sat, 21 Feb 2004 22:15:11 +0000 | |
| changeset 111 | 3a5ebcd91d37 |
| parent 72 | e560867cbe79 |
| child 112 | 0220e23a954c |
| 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@111 | 6 |
BINARIES = preflow preflow_param preflow0 preflow1 preflow2 preflow3 preflow4 preflow_max_flow |
| 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_max_flow: |
| jacint@111 | 14 |
$(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../jacint -o preflow_max_flow preflow_max_flow.cc |
| jacint@111 | 15 |
|
| jacint@111 | 16 |
preflow: |
| jacint@111 | 17 |
$(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../jacint -o preflow preflow.cc |
| jacint@111 | 18 |
|
| jacint@111 | 19 |
preflow_hl0: |
| jacint@111 | 20 |
$(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../jacint -o preflow_hl0 preflow_hl0.cc |
| jacint@111 | 21 |
|
| jacint@111 | 22 |
preflow_hl1: |
| jacint@111 | 23 |
$(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../jacint -o preflow_hl1 preflow_hl1.cc |
| jacint@111 | 24 |
|
| jacint@111 | 25 |
preflow_hl2: |
| jacint@111 | 26 |
$(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../jacint -o preflow_hl2 preflow_hl2.cc |
| jacint@111 | 27 |
|
| jacint@111 | 28 |
preflow_hl3: |
| jacint@111 | 29 |
$(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../jacint -o preflow_hl3 preflow_hl3.cc |
| jacint@111 | 30 |
|
| jacint@111 | 31 |
preflow_hl4: |
| jacint@111 | 32 |
$(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../jacint -o preflow_hl4 preflow_hl4.cc |
| jacint@111 | 33 |
|
| jacint@111 | 34 |
preflow_param: |
| jacint@111 | 35 |
$(CXX3) $(CXXFLAGS) -O3 -I. -I.. -I../jacint -o preflow_param preflow_param.cc |
| jacint@111 | 36 |
|
| jacint@111 | 37 |
clean: |
| jacint@111 | 38 |
$(RM) *.o $(BINARIES) .depend |
| jacint@111 | 39 |
|
| jacint@111 | 40 |
.PHONY: all clean dep depend |