src/work/akos/makefile
author marci
Tue, 17 Aug 2004 13:20:46 +0000
changeset 764 615aca7091d2
child 960 908a1a6f0752
permissions -rw-r--r--
An experimental LPSolverWrapper class which uses glpk. For a short
demo, max flow problems are solved with it. This demo does not
demonstrates, but the main aims of this class are row and column
generation capabilities, i.e. to be a core for easily
implementable branch-and-cut a column generetion algorithms.
ladanyi@63
     1
CXXFLAGS = -g -Wall -ansi -pedantic
ladanyi@63
     2
CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
ladanyi@63
     3
ladanyi@63
     4
loader_demo: loader_demo.cc ../list_graph.hh ../bfs_iterator.hh loader.h
ladanyi@63
     5
	$(CXX) $(CXXFLAGS) -I. -I.. loader_demo.cc -o loader_demo 
ladanyi@63
     6
clean:
ladanyi@63
     7
	$(RM) loader_demo
ladanyi@63
     8
ladanyi@63
     9
.PHONY: clean