blob: f5a1d2946b3d5f689fe875758b1c6e0a3f418d05 (
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-realauthor
mkdir biblatex-realauthor
ln README *bbx *dbx *makefile biblatex-realauthor
mkdir biblatex-realauthor/documentation
ln documentation/*tex documentation/*bib documentation/*pdf documentation/makefile biblatex-realauthor/documentation
$(RM) ../biblatex-realauthor.zip
zip -r ../biblatex-realauthor.zip biblatex-realauthor
clean:
$(MAKE) -C documentation clean
@$(RM) *.pdf *.toc *.aux *.out *.fdb_latexmk *.log *.bbl *.bcf *.blg *run.xml *.synctex.gz*
all: documentation/example-realauthor.tex documentation/biblatex-realauthor.tex documentation/example-realauthor.bib
$(MAKE) -C documentation all
|