blob: c5392aa39e3d0ff2ecbb6f30c097e6bf61d0e805 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FILES = *dtx *pdf README makefile latexmkrc
dist: indextools.pdf indextools.sty
@$(RM) ../indextools.zip
rm -rf indextools
mkdir indextools
ln $(FILES) indextools
zip -r ../indextools.zip indextools
README: README.md
cp README.md README
%.pdf %.sty: %.dtx
latexmk *dtx
clean:
@$(RM) *.pdf *.toc *.aux *.out *.fdb_latexmk *.log *.bbl *.bcf *.blg *run.xml *.synctex.gz*
|