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 +