diff options
author | dos-reis <gdr@axiomatics.org> | 2007-12-27 19:39:53 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-12-27 19:39:53 +0000 |
commit | 1d956ee860df63134233a71d8de39598dfe9a8bb (patch) | |
tree | 5c30ab52c099559c736dca804086bee0a44b8978 /src/lib/Makefile.pamphlet | |
parent | 5d3c517bfbca1bf3bf93111dd7e9969d5aa8e486 (diff) | |
download | open-axiom-1d956ee860df63134233a71d8de39598dfe9a8bb.tar.gz |
Remove more Makefile pamphlets and other leftover.
Diffstat (limited to 'src/lib/Makefile.pamphlet')
-rw-r--r-- | src/lib/Makefile.pamphlet | 174 |
1 files changed, 0 insertions, 174 deletions
diff --git a/src/lib/Makefile.pamphlet b/src/lib/Makefile.pamphlet deleted file mode 100644 index 3dc252e9..00000000 --- a/src/lib/Makefile.pamphlet +++ /dev/null @@ -1,174 +0,0 @@ -%% Oh Emacs, this is a -*- Makefile -*-, so give me tabs. -\documentclass{article} -\usepackage{axiom} - -\title{\$SPAD/src/lib Makefile} -\author{Timothy Daly \and Gabriel Dos~Reis} - -\begin{document} -\maketitle - -\begin{abstract} - This Makefile builds the \Tool{Axiom} C runtime system. This runtime - support consists of three main compoments: core, terminal I/O, and - graphics. -\end{abstract} -\eject - -\tableofcontents -\eject - -\section{Components} - -\subsection{Core runtime} - -The core C runtime system is required on all hosts. It is composed of -\begin{itemize} -\item \verb!iint bsdSignal()! -\item \verb!int addtopath(const char*)! -\item \verb!int directoryp(const char*)! -\item \verb!int make_path_from_file(const char*, const char*)! -\item \verb!int writeablep(const char*)! -\item \verb!int readablep(const char*)! -\item \verb!int findString(const char*, const char*)! -\item \verb!int copyEnvValue(const char*, char*)! -\end{itemize} - -Those functions are implemented in \File{cfuns-c.c} and -\File{sockio-c.c}. For the most part, -they depend on [[<unistd.h>]], [[<sys/stat.h>]], and -[[<sys/socket.h>]] - -<<environment>>= -core_SOURCES = bsdsignal.c cfuns-c.c sockio-c.c -@ - - -\subsection{Terminal I/O} - -This component provides all the routines necessary to build -the \Tool{Superman} component. - -<<environment>>= -terminal_io_SOURCES = cursor.c edin.c fnct_key.c openpty.c prt.c wct.c -@ - - -\subsection{Graphics} - -HyperDoc and any other graphics capability. - -<<environment>>= -graphics_SOURCES = \ - halloc.c \ - hash.c \ - pixmap.c \ - spadcolors.c \ - util.c \ - XDither.c \ - XShade.c \ - XSpadFill.c -@ - -??? document each of those files.??? - - -\section{environment} - -The \Tool{Autoconf}-subst'd variable [[axiom_c_runtime]] is computed -at configure time, based on the characteristics of the host environment. -It is a list of the main components. It also contain [[core]] - -<<environment>>= - -libspad_la_SOURCES = $(foreach comp, \ - $(addsuffix _SOURCES, @axiom_c_runtime@), \ - $($(comp))) - -other_SOURCES = cfuns-c.c - -unused_SOURCES = emupty.c - -libspad_la_objects = $(libspad_la_SOURCES:.c=.lo) - -other_objects = $(other_SOURCES:.c=.$(OBJEXT)) - -pamphlets = Makefile.pamphlet -@ - -\section{Files} - -\subsection{object from C} -<<object from C>>= -.PRECIOUS: %.$(OBJEXT) %.lo - -%.lo: %.c $(axiom_c_macros_h) - $(COMPILE) -o $@ $(CCF) $(axiom_includes) $(AXIOM_X11_CFLAGS) $< -@ - - - -\subsection{cfuns-c.c \cite{2}} -The cfuns-c file contains socket primitives used by Axiom. -They must be linked into and visible from the inferior lisp. -In GCL this link happens thru setting a shell variable called -{\bf EXTRAS} in the {\bf h/386-linux.defs} file. This file -gets included as part of the final system build of GCL. - -\subsection{hash.c \cite{6}} -This a a string-based hash table that is used both in the graph -and hyper functions. It is included here because we need it built -earlier so the graph and hyper routines can refer to it. - -\subsection{sockio-c.c \cite{10}} -The sockio-c file contains socket primitives used by Axiom. -They must be linked into and visible from the inferior lisp. -In GCL this link happens thru setting a shell variable called -{\bf EXTRAS} in the {\bf h/386-linux.defs} file. This file -gets included as part of the final system build of GCL. - -\section{The cleanup stanza} -<<cleanup>>= -# This is a support library, so it does not change often and -# we don't need to remove the produced objects in mostlyclean. -# The remoal is done by clean. -mostlyclean-local: - @rm -f *.lo *.$(OBJEXT) - -clean-local: mostlyclean-local - @$(LIBTOOL) --mode=clean $(axiom_target_libdir)/libspad.la - @rm -f $(other_objects) - @rm -f $(libspad_la_SOURCES) $(other_SOURCES) - @rm -fr .libs _libs - @rm -f stamp - -distclean-local: clean-local -@ - -<<*>>= -<<environment>> - -subdir = src/lib/ - -.PHONY: all all-lib -.SUFFIXES: -.SUFFIXES: .o .lo .obj .c .h - -all: all-ax - -all-ax all-lib: stamp -stamp: $(axiom_target_libdir)/libspad.la - rm -f stamp - $(STAMP) stamp - -$(axiom_target_libdir)/libspad.la: $(libspad_la_objects) - $(mkinstalldirs) $(axiom_target_libdir) - $(LIBTOOL) --mode=link $(CC) -o $@ $(libspad_la_objects) \ - -rpath $(libdir)/axiom/target/$(target)/lib - -<<object from C>> - -<<cleanup>> -@ - -\end{document} |