aboutsummaryrefslogtreecommitdiff
path: root/src/clef/Makefile.pamphlet
blob: e6fb9106e4e0754f60b44696b4ac31f1d285ae3e (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
%% 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}