view mk/doc.mk @ 44:812c956dd0e9

Add another admin queue type for comments on nonexistent PRs. Also, correct stupid spelling mistake. Need to get the test harness running again.
author David A. Holland
date Mon, 16 Jun 2014 01:27:45 -0400
parents c4ee36b629c0
children
line wrap: on
line source

all: $(DOC).pdf

$(DOC).pdf: $(DOC).tex
	pdflatex $(DOC).tex

depend:;

install:
	$(INSTALL) -c -m644 $(DOC).pdf $(DESTDIR)$(PREFIX)/$(DOCDIR)/$(DOC).pdf

clean distclean:
	rm -f *.aux *.log

# The PDF is shipped with the release, so don't delete it except by
# explicit request.
tooclean:
	rm -f $(DOC).pdf

.PHONY: all depend install clean distclean tooclean