dijkstra.h and fib_heap.h has moved to include.
The versions of bin_heap.hh shuld be merged and renamed to bin_heap.h
1 CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
3 CXXFLAGS = -W -Wall -ansi -pedantic -O3 -I. -I.. -I../marci -I../alpar -I../../include
4 LEDAROOT ?= /ledasrc/LEDA-4.1
6 BINARIES = dijkstra prim preflow
14 $(CXX3) $(CXXFLAGS) -o preflow preflow.cc
17 $(CXX3) $(CXXFLAGS) -o dijkstra dijkstra.cc
20 $(CXX3) $(CXXFLAGS) -o prim prim.cc
23 $(RM) *.o $(BINARIES) .depend
25 .PHONY: all clean dep depend