summaryrefslogtreecommitdiff
path: root/doc/en/_static/en/Makefile
blob: e663b44d40c3d2de4923118ef471b9cdcc7fd844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# If you feel the need to duplicate this file, you'll win the right to refactor
# doc/*/quick-reference/Makefile and update TARGETS and OBJECTS usages in
# doc/Makefile

TARGETS=bzr-en-quick-reference.png bzr-en-quick-reference.pdf
OBJECTS=bzr-en-quick-reference.svg Makefile

all: $(TARGETS)

.SUFFIXES: .svg .png .pdf

.svg.pdf:
	rsvg-convert -d 300 -p 300 -f pdf -o $@ $<

.svg.png:
	rsvg-convert -d 300 -p 300 -z 3.3346 -f png -o $@ $<

bzr-en-quick-reference.png: $(OBJECTS)

bzr-en-quick-reference.pdf: $(OBJECTS)

clean:
	rm -f $(TARGETS)