COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/makefile @ 7:0f527d1b9149

Last change on this file since 7:0f527d1b9149 was 7:0f527d1b9149, checked in by Alpar Juttner, 20 years ago

.

File size: 657 bytes
Line 
1CXXFLAGS=-g -Wall -I../include
2
3none:
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
11all: graphdemo bfsdemo bfsdemo2
12
13clean:
14        rm graphdemo bfsdemo bfsdemo2
15
16graphdemo: graphdemo.cc ../include/graph.h \
17        ../include/oldgraph.h makefile
18        g++ $(CXXFLAGS) -o graphdemo graphdemo.cc
19
20bfsdemo: bfsdemo.cc ../include/graph.h ../include/bfs.h \
21        ../include/oldgraph.h makefile
22        g++ $(CXXFLAGS) -o bfsdemo bfsdemo.cc
23
24bfsdemo2: bfsdemo2.cc ../include/graph.h ../include/bfs.h \
25        ../include/oldgraph.h makefile
26        g++ $(CXXFLAGS) -o bfsdemo2 bfsdemo2.cc
Note: See TracBrowser for help on using the repository browser.