# HG changeset patch # User David A. Holland # Date 1346694942 14400 # Node ID c4ee36b629c0443e53e8aba17d6f93dfe943d87d # Parent dfd62aad74f49b6f9734edec05b2515b4437cc12 Build bits for docs, and a starting placeholder doc. diff -r dfd62aad74f4 -r c4ee36b629c0 doc/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/Makefile Mon Sep 03 13:55:42 2012 -0400 @@ -0,0 +1,6 @@ +TOP=.. +include $(TOP)/mk/base.mk + +DOC=swallowtail + +include $(TOP)/mk/doc.mk diff -r dfd62aad74f4 -r c4ee36b629c0 doc/swallowtail.tex --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/swallowtail.tex Mon Sep 03 13:55:42 2012 -0400 @@ -0,0 +1,36 @@ +%\documentclass[11pt,twocolumn]{article} +\documentclass[11pt]{article} +\usepackage{fullpage} + +\usepackage{graphicx} +\usepackage{url} +\usepackage{parskip} + +\usepackage{charter} +\usepackage{courier} +\frenchspacing + +% without help, latex sets these characters in the wrong font inside \tt +% (I thought this was mostly fixed, but it's still happening in some cases) +\newcommand{\us}{{\tt\char`\_}} +\newcommand{\bra}{{\tt\char`\{}} +\newcommand{\ket}{{\tt\char`\}}} +\newcommand{\bs}{{\tt\char`\\}} +\newcommand{\caret}{{\tt\char`\^}} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\title{The Swallowtail Bugtracking System} +\author{David A. Holland} +\date{September 3, 2012} + +\begin{document} +\maketitle + +\section{Introduction} + +Swallowtail is a bugtracking system meant to serve as a migration path +for large GNATS installations. + + +\end{document} diff -r dfd62aad74f4 -r c4ee36b629c0 mk/doc.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mk/doc.mk Mon Sep 03 13:55:42 2012 -0400 @@ -0,0 +1,19 @@ +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