Prima versione rivista e corretta.
This commit is contained in:
commit
58b8605abb
19 changed files with 4754 additions and 0 deletions
21
Makefile
Normal file
21
Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
obj = slides.pdf
|
||||
|
||||
default: $(obj)
|
||||
|
||||
run: $(obj)
|
||||
optirun impressive $(obj)
|
||||
|
||||
clean:
|
||||
rm -f *.log *.aux *.nav *.toc *.snm *.out
|
||||
|
||||
distclean: clean
|
||||
rm -f $(obj)
|
||||
|
||||
%.pdf: %.aux
|
||||
xelatex --shell-escape --interaction=nonstopmode $(*F)
|
||||
|
||||
|
||||
%.aux: %.tex
|
||||
xelatex --shell-escape --interaction=nonstopmode $(*F)
|
||||
|
||||
.PHONY: clean distclean default run
|
Loading…
Add table
Add a link
Reference in a new issue