blob: d0573f471f12229c6a02d8401d5e552acbee94fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
%% Oh Emacs, this is a -*- Makefile -*-, so give me tabs.
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/booklets Makefile.pamphlet}
\author{Timothy Daly \and Gabriel Dos~Reis}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
<<*>>=
subdir = src/booklets/
pamphlets = Rosetta.pamphlet
.PHONY: all all-book
all: all-ax
all-book all-ax:
mostlyclean-local:
clean-local: mostlyclean-local
distclean-local: clean-local
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}
|