aboutsummaryrefslogtreecommitdiff
path: root/src/clef/Makefile.in
blob: d861f72436565254f20fdd0f549f9ac8ca4c1511 (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
# this is where the include files live
INC=    $(axiom_src_srcdir)/include

bin_PROGRAMS = clef$(EXEEXT)

clef_sources = edible.c

clef_SOURCES = $(addsuffix .pamphlet, $(clef_sources))

clef_objects = $(clef_sources:.c=.lo)

clef_LDADD = $(axiom_target_libdir)/libspad.la
clef_DEPENDENCIES =

subdir = src/clef/

pamphlets = $(clef_SOURCES) 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

$(axiom_target_bindir)/clef$(EXEEXT): $(clef_objects) $(clef_DEPENDENCIES)
	$(LINK) -o $@ $(clef_objects) $(clef_LDADD) ${LDF}

.SUFFIXES:
.SUFFIXES: .c .lo .h
.PRECIOUS: %.c
.PRECIOUS: %.lo

%.c: $(srcdir)/%.c.pamphlet
	$(axiom_build_document) --tangle --output=$@ $<

%.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 $(clef_sources)
	@rm -f stamp

clean-local: mostlyclean-local
	@rm -f $(axiom_target_bindir)/clef$(EXEEXT)

distclean-local: clean-local