cours-snt/Makefile
2020-10-07 14:53:53 +02:00

24 lines
378 B
Makefile

default: all
.PHONY: default
all:
.PHONY: all
TEX:= $(wildcard ./*/*.tex)
tex: $(TEX)
pdflatex
## 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)
echo $(TEX)
inkscape -D $^ -o $@ --export-latex