~ubuntu-branches/ubuntu/quantal/libbonobo/quantal-201207170711

« back to all changes in this revision

Viewing changes to doc/api/figures/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-02-18 14:40:51 UTC
  • mto: (3.1.1 etch) (1.1.25 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050218144051-fo4h9qh2gim8x3wt
Tags: upstream-2.8.1
ImportĀ upstreamĀ versionĀ 2.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
diagrams = persist.dia persist-file.dia persist-storage.dia \
 
4
           persist-stream.dia storage.dia stream.dia unknown.dia \
 
5
           running-context.dia
 
6
 
 
7
 
 
8
diagrams_png = $(diagrams:.dia=.png)
 
9
 
 
10
all-local: $(diagrams_png)
 
11
 
 
12
# NOTE: make sure you have dia >= 0.91 and DISPLAY set
 
13
# NOTE: if you edit the dia files, save them UNcompressed!
 
14
%.png: %.dia
 
15
        @dia $< -e $@ 2> /dev/null || true
 
16
 
 
17
 
 
18
EXTRA_DIST = $(diagrams) $(diagrams_png)
 
19