src/work/athos/makefile
author alpar
Sat, 20 Mar 2004 16:07:19 +0000
changeset 215 b3c4e6646f7f
parent 36 7d539ea6ad26
child 313 30c5179f296b
permissions -rw-r--r--
bool map problems solved.
(now operator[] gives back 'std::vector<T>::reference' rather that 'T&')
     1 CXXFLAGS = -Wall -ansi -g
     2 CXX = g++-3.0
     3 
     4 pf_demo: pf_demo.cc ../marci_graph_traits.hh ../list_graph.hh ../marci_property_vector.hh preflow_push.hh reverse_bfs.hh
     5 	$(CXX) $(CXXFLAGS) -I. -I.. pf_demo.cc -o pf_demo 
     6 
     7