cours-snt/Makefile

24 lines
378 B
Makefile
Raw Normal View History

2020-10-07 12:35:36 +00:00
default: all
.PHONY: default
all:
.PHONY: all
2020-10-07 12:53:53 +00:00
TEX:= $(wildcard ./*/*.tex)
tex: $(TEX)
pdflatex
2020-10-07 12:35:36 +00:00
## 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)
2020-10-07 12:53:53 +00:00
echo $(TEX)
2020-10-07 12:35:36 +00:00
inkscape -D $^ -o $@ --export-latex