diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/handout/makefile')
-rw-r--r-- | Master/texmf-dist/doc/latex/handout/makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/handout/makefile b/Master/texmf-dist/doc/latex/handout/makefile new file mode 100644 index 00000000000..e4e5610c87f --- /dev/null +++ b/Master/texmf-dist/doc/latex/handout/makefile @@ -0,0 +1,21 @@ + +dist: examples handout.tex README *.sty makefile latexmkrc + $(RM) ../handout.zip + rm -rf handout + latexmk handout.tex + $(MAKE) -C examples all + + mkdir handout + cp *.sty *.tex *.pdf latexmkrc makefile README handout + + mkdir handout/examples + cp examples/*pdf examples/*tex examples/*bib examples/latexmkrc examples/makefile handout/examples + + mkdir handout/examples/txt + cp examples/txt/*tex handout/examples/txt + zip -r ../handout.zip handout + +clean: + $(MAKE) -C examples clean + @$(RM) *.pdf *.toc *.aux *.out *.fdb_latexmk *.log *.bbl *.bcf *.blg *run.xml *.synctex.gz* *.pyg + rm -rf handout |