Converts any .svg file in the current directory to a .pdf file.
Makefile:
SVGFILES := $(wildcard *.svg)
all: $(SVGFILES:%.svg=%.pdf)
%.pdf : %.svg
inkscape -A `pwd`/$*.pdf -f `pwd`/$<
Makefile:
SVGFILES := $(wildcard *.svg) all: $(SVGFILES:%.svg=%.pdf) %.pdf : %.svg inkscape -A `pwd`/$*.pdf -f `pwd`/$<
Usage, just type make.
$ make