src/work/makefile
author jacint
Fri, 23 Jan 2004 22:26:13 +0000
changeset 33 f505c414feb9
parent 3 272a5677bd6d
child 34 2b607665c9e2
permissions -rw-r--r--
Primitive Dijkstra with stl priority queue. flow_test.cc is for testing flows and Dijkstra.
     1 CXXFLAGS=-g -Wall -I../include
     2 
     3 none:
     4 	@echo 'Please use one of these forms:'
     5 	@echo '   make all'
     6 	@echo '   make clean'
     7 	@echo '   make graphdemo'
     8 	@echo '   make bfsdemo'
     9 	@echo '   make bfsdemo2'
    10 
    11 all: graphdemo bfsdemo bfsdemo2
    12 
    13 clean:
    14 	rm graphdemo bfsdemo bfsdemo2
    15 
    16 graphdemo: graphdemo.cc ../include/graph.h \
    17 	../include/oldgraph.h makefile
    18 	g++ $(CXXFLAGS) -o graphdemo graphdemo.cc
    19 
    20 bfsdemo: bfsdemo.cc ../include/graph.h ../include/bfs.h \
    21 	../include/oldgraph.h makefile
    22 	g++ $(CXXFLAGS) -o bfsdemo bfsdemo.cc
    23 
    24 bfsdemo2: bfsdemo2.cc ../include/graph.h ../include/bfs.h \
    25 	../include/oldgraph.h makefile
    26 	g++ $(CXXFLAGS) -o bfsdemo2 bfsdemo2.cc