%% 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} <>= # 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} <>= $(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 @ <<*>>= <> 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 <> @ \end{document}