19 lines
323 B
Makefile
19 lines
323 B
Makefile
|
|
default: all
|
|
.PHONY: default
|
|
|
|
all:
|
|
.PHONY: all
|
|
licences
|
|
|
|
|
|
|
|
## Licences ##
|
|
## Convert svg licence files to pdf+pdf_tex
|
|
LICENCES:= $(wildcard ./licences/*.svg)
|
|
LICENCES_PDF:= $(patsubst %.svg,%.pdf,$(wildcard ./licences/*.svg))
|
|
licences: $(LICENCES_PDF)
|
|
$(LICENCES_PDF): $(LICENCES)
|
|
inkscape -D $^ -o $@ --export-latex
|
|
|