aboutsummaryrefslogtreecommitdiff
path: root/src/clef/Makefile.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/clef/Makefile.pamphlet')
-rw-r--r--src/clef/Makefile.pamphlet74
1 files changed, 0 insertions, 74 deletions
diff --git a/src/clef/Makefile.pamphlet b/src/clef/Makefile.pamphlet
deleted file mode 100644
index e6fb9106..00000000
--- a/src/clef/Makefile.pamphlet
+++ /dev/null
@@ -1,74 +0,0 @@
-%% Oh Emacs, this is a -*- Makefile -*-, so give me tabs.
-\documentclass{article}
-\usepackage{axiom}
-\begin{document}
-\title{\$SPAD/src/clef Makefile}
-\author{Gabriel Dos~Reis \and Timothy Daly}
-\maketitle
-\begin{abstract}
-\end{abstract}
-\eject
-\tableofcontents
-\eject
-\section{Environment variables}
-<<environment>>=
-# this is where the include files live
-INC= $(axiom_src_srcdir)/include
-
-bin_PROGRAMS = clef$(EXEEXT)
-
-clef_SOURCES = edible.c
-
-clef_objects = $(clef_SOURCES:.c=.lo)
-
-clef_LDADD = $(axiom_target_libdir)/libspad.la
-clef_DEPENDENCIES =
-@
-
-\section{The clef sources, edible}
-<<edible>>=
-$(axiom_target_bindir)/clef$(EXEEXT): $(clef_objects) $(clef_DEPENDENCIES)
- $(LINK) -o $@ $(clef_objects) $(clef_LDADD) ${LDF}
-
-.SUFFIXES:
-.SUFFIXES: .c .lo .h
-.PRECIOUS: %.lo
-
-%.lo: ${INC}/useproto.h ${INC}/edible.h \
- $(axiom_configdir)/axiom-c-macros.h
-
-%.lo: %.c $(axiom_c_macros_h)
- $(COMPILE) -o $@ ${CCF} $(axiom_includes) $<
-
-mostlyclean-local:
- @rm -f $(clef_objects)
- @rm -f stamp
-
-clean-local: mostlyclean-local
- @rm -f $(axiom_target_bindir)/clef$(EXEEXT)
-
-distclean-local: clean-local
-@
-
-<<*>>=
-<<environment>>
-
-subdir = src/clef/
-
-pamphlets = Makefile.pamphlet
-
-.PHONY: all all-clef
-all: all-ax
-
-all-ax all-clef: stamp
- @ echo finished $(builddir)
-
-stamp: $(axiom_target_bindir)/clef$(EXEEXT)
- @rm -f stamp
- $(STAMP) stamp
-
-<<edible>>
-
-@
-
-\end{document}