aboutsummaryrefslogtreecommitdiff
path: root/src/etc
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-12-27 17:49:22 +0000
committerdos-reis <gdr@axiomatics.org>2007-12-27 17:49:22 +0000
commit225f2afb7e52720f4cf38a4d566a791c4bf7d898 (patch)
treec6fc40fcad0e53e15beb3012e391996225cc1d91 /src/etc
parent77a615c46dd001e67b0b1b22c3208c022e2fabb6 (diff)
downloadopen-axiom-225f2afb7e52720f4cf38a4d566a791c4bf7d898.tar.gz
Remove more Makefile pamphlets
Diffstat (limited to 'src/etc')
-rw-r--r--src/etc/ChangeLog4
-rw-r--r--src/etc/Makefile.in32
-rw-r--r--src/etc/Makefile.pamphlet135
3 files changed, 36 insertions, 135 deletions
diff --git a/src/etc/ChangeLog b/src/etc/ChangeLog
index 318967b8..6dff0481 100644
--- a/src/etc/ChangeLog
+++ b/src/etc/ChangeLog
@@ -1,3 +1,7 @@
+2007-12-27 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ * Makefile.pamphlet: Remove.
+
2007-10-10 Gabriel Dos Reis <gdr@cs.tamu.edu>
* Makefile.pamphlet (INTERPSYS): Take system root directory and
diff --git a/src/etc/Makefile.in b/src/etc/Makefile.in
index 66e93c63..c872654c 100644
--- a/src/etc/Makefile.in
+++ b/src/etc/Makefile.in
@@ -1,3 +1,35 @@
+# Copyright (C) 2007, Gabriel Dos Reis.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+# - Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# - Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in
+# the documentation and/or other materials provided with the
+# distribution.
+#
+# - Neither the name of The Numerical Algorithms Group Ltd. nor the
+# names of its contributors may be used to endorse or promote products
+# derived from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
INTERPSYS = ../interp/interpsys$(EXEEXT) -- --system="$(AXIOM)" \
--sysalg="$(axiom_src_datadir)/algebra/"
diff --git a/src/etc/Makefile.pamphlet b/src/etc/Makefile.pamphlet
deleted file mode 100644
index a47a7172..00000000
--- a/src/etc/Makefile.pamphlet
+++ /dev/null
@@ -1,135 +0,0 @@
-%% Oh Emacs, this is a -*- Makefile -*-, so give me tabs.
-\documentclass{article}
-\usepackage{axiom}
-
-\title{\File{src/etc/Makefile} Pamphlet}
-\author{Timothy Daly \and Gabriel Dos~Reis}
-
-\begin{document}
-\maketitle
-
-\begin{abstract}
-\end{abstract}
-\eject
-
-\tableofcontents
-\eject
-
-\section{The databases}
-
-The databases are built in this Makefile even though the prerequisits
-are actually made during the previous step in the algebra directory.
-This allows us to use a simple wildcard to express the fact that
-all of the [[algreba/*.NRLIB/code.\$(OBJEXT)]] files are required in
-order to build
-the databases. If any if any of these are changed, the databases must
-be re-built.
-<<dbcomplete>>=
-$(axiom_targetdir)/algebra/*.daase: ../algebra/*.NRLIB/code.$(OBJEXT)
- @ echo 4 rebuilding databases...
- @ $(INSTALL_DATA) $(axiom_src_docdir)/topics.data ../algebra
- @ (cd ../algebra ; \
- echo ')lisp (make-databases "" nil)' | ${INTERPSYS} )
- @ $(INSTALL_DATA) ../algebra/*.daase $(axiom_targetdir)/algebra
- @ $(INSTALL_DATA) ../algebra/libdb.text $(axiom_targetdir)/algebra
- @ $(INSTALL_DATA) ../algebra/comdb.text $(axiom_targetdir)/algebra
-
-@
-
-\section{\Tool{summary}}
-
-<<summary>>=
-$(axiom_target_libdir)/summary: $(srcdir)/summary
- $(INSTALL_DATA) $< $@
-
-@
-
-\section{\File{copyright}}
-
-<<copyright>>=
-$(axiom_target_libdir)/copyright: $(srcdir)/copyright
- $(INSTALL_DATA) $< $@
-
-@
-
-\section{\Tool{asq}}
-
-\Tool{asq} is a command line tool to ask questions about \Tool{Axiom}'s
-domains, packages, and categories.
-
-\begin{verbatim}
-asq -property searchkey
- property is one of the following flags: (all is the default)
- (ab) abbreviation (an) ancestors
- (at) attributes (ca cc) constructorcategory
- (cf fo) constructorform (ck ki) constructorkind
- (cm) constructormodemap (con) constructor
- (cos) cosig (de) defaultdomain
- (dom) domain (doc) documentation
- (mo) modemaps (ni) niladic
- (ob) object (op) operationalist
- (pr) predicates (so) sourcefile
-searchkey can be either a domain or its abbreviation.
- e.g. %s -so Integer
- will give the source file name written to stdout
-\end{verbatim}
-
-<<asq>>=
-bin_PROGRAMS = asq$(EXEEXT)
-asq_sources = asq.c
-asq_SOURCES = $(addsuffix .pamphlet, $(asq_sources))
-asq_objects = $(asq_sources:.c=.$(OBJEXT))
-
-$(axiom_target_bindir)/asq$(EXEEXT): asq.c $(axiom_c_macros_h)
- @echo 4 making $@ from $<
- ${CC} ${CCF} $(axiom_includes) -o asq asq.c
- $(INSTALL_PROGRAM) asq $(axiom_target_bindir)
-
-asq.c: $(srcdir)/asq.c.pamphlet
- $(axiom_build_document) --tangle --output=$@ $<
-@
-
-<<*>>=
-INTERPSYS = ../interp/interpsys$(EXEEXT) -- --system="$(AXIOM)" \
- --sysalg="$(axiom_src_datadir)/algebra/"
-
-subdir = src/etc/
-
-pamphlets = Makefile.pamphlet $(asq_SOURCES)
-
-
-.PHONY: all all-asq
-all: all-ax
-
-all-ax all-asq: stamp
- @echo finished $(builddir)
-
-stamp: $(axiom_targetdir)/algebra/*.daase $(axiom_target_bindir)/asq$(EXEEXT) \
- $(axiom_target_libdir)/summary \
- $(axiom_target_libdir)/copyright
- -rm -f stamp
- $(STAMP) stamp
-
-<<dbcomplete>>
-<<asq>>
-<<summary>>
-<<copyright>>
-
-mostlyclean-local:
- -rm -f $(asq_sources) $(asq_objects)
- -rm -f stamp
-
-clean-local: mostlyclean-local
- -rm -f $(axiom_target_libdir)/summary
- -rm -f $(axiom_target_libdir)/copyright
- -rm -f $(axiom_target_bindir)/axiom
- -rm -f $(axiom_target_bindir)/asq$(EXEEXT)
-
-distclean-local: clean-local
-@
-
-\eject
-\begin{thebibliography}{99}
-\bibitem{1} nothing
-\end{thebibliography}
-\end{document}