/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/en/quick-reference/Makefile

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-06-18 05:13:43 UTC
  • mfrom: (4456.2.1 default-stacking-again)
  • Revision ID: pqm@pqm.ubuntu.com-20090618051343-c9ltrfncx8hvw729
(andrew) Fix branch format upgrades triggered by default stacking
        policy on a smart server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# If you feel the need to duplicate this file, you'll win the right to refactor
 
2
# doc/*/quick-reference/Makefile and update TARGETS and OBJECTS usages in
 
3
# doc/Makefile
 
4
 
 
5
TARGETS=quick-start-summary.png quick-start-summary.pdf
 
6
OBJECTS=quick-start-summary.svg Makefile
 
7
 
 
8
all: $(TARGETS)
 
9
 
 
10
.SUFFIXES: .svg .png .pdf
 
11
 
 
12
.svg.pdf:
 
13
        rsvg-convert -d 300 -p 300 -f pdf -o $@ $<
 
14
 
 
15
.svg.png:
 
16
        rsvg-convert -d 300 -p 300 -z 3.3346 -f png -o $@ $<
 
17
 
 
18
bzr-quickref.png: $(OBJECTS)
 
19
 
 
20
bzr-quickref.pdf: $(OBJECTS)
 
21
 
 
22
clean:
 
23
        rm -f $(TARGETS)