aboutsummaryrefslogtreecommitdiff
path: root/src/share/Makefile.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
committerdos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
commitab8cc85adde879fb963c94d15675783f2cf4b183 (patch)
treec202482327f474583b750b2c45dedfc4e4312b1d /src/share/Makefile.pamphlet
downloadopen-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz
Initial population.
Diffstat (limited to 'src/share/Makefile.pamphlet')
-rw-r--r--src/share/Makefile.pamphlet53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/share/Makefile.pamphlet b/src/share/Makefile.pamphlet
new file mode 100644
index 00000000..13d54119
--- /dev/null
+++ b/src/share/Makefile.pamphlet
@@ -0,0 +1,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}