blob: 36427c4c8ee7e358726b5c188da2819000e79914 (
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
|
# 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 =
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
$(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
|