Ajout documents pour cours NoSQL

This commit is contained in:
2019-09-22 22:14:24 +02:00
parent 0091d980b3
commit ad6aced650
16 changed files with 905 additions and 0 deletions

14
cesi/nosql/Makefile Normal file
View File

@ -0,0 +1,14 @@
.PHONY: all slides
.ONESHELL:
all: pdf
slides:
for i in *.md; do php Slides/make.php "$$i" > "Slides/$${i##.md}.html"; done;
pdf: slides
cd Slides; for i in *.html; do prince -o "../$${i##.html}.pdf" "$$i"; done;
clean:
rm -f Slides/*.html
rm -f *.pdf