Last change
on this file since 29 was
29,
checked in by landauf, 16 years ago
|
updated boost from 1_33_1 to 1_34_1
|
File size:
1.1 KB
|
Line | |
---|
1 | # -*- makefile -*- |
---|
2 | # Copyright (c) 2002 Trustees of Indiana University |
---|
3 | # |
---|
4 | # Distributed under the Boost Software License, Version 1.0. |
---|
5 | # (See accompanying file LICENSE_1_0.txt or copy at |
---|
6 | # http://www.boost.org/LICENSE_1_0.txt) |
---|
7 | |
---|
8 | .SUFFIXES: .fig .gif .tif .jpeg |
---|
9 | |
---|
10 | .fig.gif: |
---|
11 | fig2dev -L gif $*.fig > $*.gif |
---|
12 | |
---|
13 | .fig.tif: |
---|
14 | fig2dev -L tiff $*.fig > $*.tif |
---|
15 | |
---|
16 | .fig.jpeg: |
---|
17 | fig2dev -L jpeg $*.fig > $*.jpg |
---|
18 | |
---|
19 | |
---|
20 | |
---|
21 | FIG = \ |
---|
22 | analogy.fig dfs_example.fig quick_start.fig \ |
---|
23 | back_edges.fig dfs_family.fig stl_iter.fig \ |
---|
24 | bfs_example.fig dfs_visitor.fig tree_edges.fig \ |
---|
25 | bfs_family.fig disjoint_set_family.fig visitor.fig \ |
---|
26 | bfs_visitor.fig file_dep.fig \ |
---|
27 | concepts.fig forward_or_cross_edges.fig digraph.fig \ |
---|
28 | undigraph.fig adj_matrix.fig adj_list.fig \ |
---|
29 | edge_list.fig dfs.fig knights_tour.fig \ |
---|
30 | search_states.fig graph_search.fig |
---|
31 | |
---|
32 | |
---|
33 | GIF = $(FIG:.fig=.gif) |
---|
34 | TIFF = $(FIG:.fig=.tif) |
---|
35 | JPEG = $(FIG:.fig=.jpg) |
---|
36 | |
---|
37 | gifs: $(GIF) |
---|
38 | tiffs: $(TIFF) |
---|
39 | jpegs: $(JPEG) |
---|
40 | |
---|
41 | clean: |
---|
42 | /bin/rm -f *.gif *.tif *.jpg |
---|
43 | |
---|
44 | |
---|
45 | |
---|
Note: See
TracBrowser
for help on using the repository browser.