File size: 174 Bytes
6288873
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/make -f

PDFS := $(wildcard *.pdf)
SVGS := $(PDFS:%.pdf=%.svg)

all: ${SVGS}

%.svg: %.pdf
	inkscape --pdf-poppler "$<" -o "$@"

clean: texauxclean
	rm -f ${SVGS}