# ======================================================================
# Makefile for files in <TEX.TUGBOAT> on TOPS-20
# This constructs the tugboat.bib file from the tb*.cnt files using
# the awk program tugboat.awk, and then produces complete test
# bibliographies in alpha and unsrt form.
# [29-Oct-88]
# ======================================================================
AWK = nawk
BIBTEX = nbibtex
DETEX = detex
DEV = alw
# We need a BIGG version of Common TeX to handle this big bibliography
LATEX = cm-latex
LATEX = latex
# For temporary debugging
# TUGCONTENTS = tb0988.cnt
all: tugbib tugbib2
tugbib: tugbib.dvi
# tugbib is in alpha order; this is preferable to plain (which gives
# the same reference order) so we can test the correctness of alphanumeric
# bibliography labels.
tugbib.dvi: tugbib.ltx tugboat.bib
- $(RM) tugbib.bbl
- $(RM) tugbib.aux
- $(LATEX) tugbib.ltx
- $(BIBTEX) tugbib
- $(LATEX) tugbib.ltx
- $(LATEX) tugbib.ltx
# tugbib2 is in unsrt order for checking the bibliography against the
# original TUGboat tables of contents
tugbib2.dvi: tugbib2.ltx tugboat.bib
- $(RM) tugbib2.bbl
- $(RM) tugbib2.aux
- $(LATEX) tugbib2.ltx
- $(BIBTEX) tugbib2
- $(LATEX) tugbib2.ltx
- $(LATEX) tugbib2.ltx