COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/makefile @ 4:8009bb5ddd09

Last change on this file since 4:8009bb5ddd09 was 3:272a5677bd6d, checked in by Alpar Juttner, 20 years ago
  • Marci type iterator constructors
  • src/demo/bfsdemo.cc: demo for bfs.h
  • cosmetical changes
File size: 478 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
10all: graphdemo bfsdemo
11
12clean:
13        rm graphdemo bfsdemo
14graphdemo: graphdemo.cc ../include/graph.h \
15        ../include/oldgraph.h makefile
16        g++ $(CXXFLAGS) -o graphdemo graphdemo.cc
17
18bfsdemo: bfsdemo.cc ../include/graph.h ../include/bfs.h \
19        ../include/oldgraph.h makefile
20        g++ $(CXXFLAGS) -o bfsdemo bfsdemo.cc
Note: See TracBrowser for help on using the repository browser.