Update dependencies, add bibliography generation
This most importantly (probably) adds bibliography generation. Dependencies are updated as well.
This commit is contained in:
parent
b24652c820
commit
8a1fb6b170
|
@ -1,13 +1,18 @@
|
||||||
TEXFILES = runequest.tex 000-header.tex 900-footer.tex dedication.tex copyleft.tex acknowledgements.tex licenses.tex introduction.tex license-texts.tex
|
TEXFILES = runequest.tex 000-header.tex 900-footer.tex dedication.tex copyleft.tex acknowledgements.tex licenses.tex introduction.tex license-texts.tex about-characters.tex character-creation.tex character-information.tex
|
||||||
|
BIBFILES = mybiblio.bib
|
||||||
CLEANFILES = *.dvi *.log *.aux *.lof *.lot *.toc *.png
|
CLEANFILES = *.dvi *.log *.aux *.lof *.lot *.toc *.png
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm $(CLEANFILES)
|
rm $(CLEANFILES)
|
||||||
echo "Nothing to clean"
|
echo "Nothing to clean"
|
||||||
|
|
||||||
runequest.dvi: $(TEXFILES)
|
runequest.bbl: $(BIBFILES)
|
||||||
latex runequest.tex
|
biber runequest
|
||||||
latex runequest.tex
|
biber runequest
|
||||||
|
|
||||||
|
runequest.dvi: $(TEXFILES) runequest.bbl
|
||||||
|
latex runequest
|
||||||
|
latex runequest
|
||||||
|
|
||||||
runequest.pdf: runequest.dvi
|
runequest.pdf: runequest.dvi
|
||||||
dvipdf.sh runequest
|
dvipdf.sh runequest
|
||||||
|
|
Loading…
Reference in New Issue