• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
21FIG	= \
22analogy.fig       dfs_example.fig             quick_start.fig \
23back_edges.fig    dfs_family.fig              stl_iter.fig    \
24bfs_example.fig   dfs_visitor.fig             tree_edges.fig  \
25bfs_family.fig    disjoint_set_family.fig     visitor.fig     \
26bfs_visitor.fig   file_dep.fig					    \
27concepts.fig      forward_or_cross_edges.fig  digraph.fig     \
28undigraph.fig     adj_matrix.fig              adj_list.fig    \
29edge_list.fig     dfs.fig                     knights_tour.fig \
30search_states.fig graph_search.fig
31
32
33GIF	= $(FIG:.fig=.gif)
34TIFF	= $(FIG:.fig=.tif)
35JPEG	= $(FIG:.fig=.jpg)
36
37gifs: $(GIF)
38tiffs: $(TIFF)
39jpegs: $(JPEG)
40
41clean:
42	/bin/rm -f *.gif *.tif *.jpg
43
44
45
46