From 51d014ddf4de227340bac4ff16fae4b5eafe6e0e Mon Sep 17 00:00:00 2001 From: Adrian Amaglio Date: Wed, 7 Oct 2020 14:35:36 +0200 Subject: [PATCH] licence building files --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..674fc23 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ + +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 +