blob: b7ed344309488f2d238436c1119102d51d130500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
FILES = *.bbx *.dbx *.lbx documentation makefile README
dist: all
rm -rf biblatex-manuscripts-philology
mkdir biblatex-manuscripts-philology
ln README *sty *bbx *dbx *lbx *makefile biblatex-manuscripts-philology
mkdir biblatex-manuscripts-philology/documentation
ln documentation/*tex documentation/*bib documentation/*pdf documentation/makefile biblatex-manuscripts-philology/documentation
$(RM) ../biblatex-manuscripts-philology.zip
zip -r ../biblatex-manuscripts-philology.zip biblatex-manuscripts-philology
clean:
$(MAKE) -C documentation clean
@$(RM) *.pdf *.toc *.aux *.out *.fdb_latexmk *.log *.bbl *.bcf *.blg *run.xml *.synctex.gz*
all: documentation/biblatex-manuscripts-philology-example.tex documentation/biblatex-manuscripts-philology.tex documentation/biblatex-manuscripts-philology-example.bib
$(MAKE) -C documentation all
|