summaryrefslogtreecommitdiff
path: root/pic_svg.mk
blob: cfb5053cff289a52d5cf7889d063a8b08721a8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- make -*-

CLEAN_TARGETS      += clean_pdf_svg_targets
REAL_CLEAN_TARGETS += real_clean_pdf_svg_targets

svg_sources = $(wildcard *.svg)
pdf_svg = $(svg_sources:%.svg=$(pics_destdir)/%.pdf)

copy_pdf_compatible_files: dest_dir_svg $(pdf_svg)

$(pdf_svg): $(pics_destdir)/%.pdf : %.svg
	inkscape --export-pdf=$@ $<

clean_pdf_svg_targets:

real_clean_pdf_svg_targets:
ifneq ($(strip $(pdf_svg)),)
	rm -f $(pdf_svg)
endif

dest_dir_svg: 
	$(INSTALL) -d -m 0755 $(pics_destdir)