aboutsummaryrefslogtreecommitdiff
path: root/src/share/Makefile.pamphlet
blob: 13d541190724488ea292a01196d574f684839a9f (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
%% Oh Emacs, this is a -*- Makefile -*-, so give me tabs.
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/share Makefile}
\author{Timothy Daly}
\maketitle
\begin{abstract}
Files in the share directory are common to all of the system builds.
\end{abstract}
\eject
\tableofcontents
\eject
\section{command.list}
The [[command.list]] file contains command completion strings used by
the [[clef]] command line editor function. In the NAG version this 
lived in the share subdirectory but the open source version moves it
back to the [[lib]] directory where it originally lived.
<<command.list>>=
$(axiom_target_libdir)/command.list: $(srcdir)/algebra/command.list
	$(INSTALL_DATA) $< $@
@

<<*>>=
subdir = src/share/

FILES=$(axiom_target_libdir)/command.list

.SUFFIXES:
.PHONY: all all-share
all: all-ax

all-ax all-share: stamp
	@ echo 3 finished $(srcdir)

stamp: ${FILES}
	-rm -f stamp
	$(STAMP) stamp

mostlyclean-local:
	@-rm -f $(FILES)
	@-rm -f stamp

clean-local: mostlyclean-local
distclean-local: clean-local

<<command.list>>
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}