Remove latex pdfs
This commit is contained in:
parent
b93d0edfe9
commit
3534fccdcc
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -9,12 +9,13 @@
|
||||||
*.log
|
*.log
|
||||||
*.nav
|
*.nav
|
||||||
*.out
|
*.out
|
||||||
|
*.pdf
|
||||||
*.run.xml
|
*.run.xml
|
||||||
*.snm
|
*.snm
|
||||||
*.toc
|
*.toc
|
||||||
|
|
||||||
# generated pdfs (libreoffice)
|
# Exclude latex assets
|
||||||
handout.pdf
|
!/latex/assets/*
|
||||||
|
|
||||||
# reveal js (generated)
|
# reveal js (generated)
|
||||||
/revealjs/*/index.html
|
/revealjs/*/index.html
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -2,7 +2,11 @@ default:
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -f revealjs/*/index.html revealjs/*/index.pdf */*/handout.pdf
|
rm -f \
|
||||||
|
*/*/handout.pdf \
|
||||||
|
latex/*/index.pdf \
|
||||||
|
revealjs/*/index.html \
|
||||||
|
revealjs/*/index.pdf
|
||||||
|
|
||||||
revealjs/%/index.html: revealjs/%/*.md
|
revealjs/%/index.html: revealjs/%/*.md
|
||||||
python3 revealjs/build.py $@
|
python3 revealjs/build.py $@
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in a new issue