src/utilities.lisp: Spell `locative' in full for the class and predicate.
[sod] / vars.am
diff --git a/vars.am b/vars.am
index 7e2a89f..1409100 100644 (file)
--- a/vars.am
+++ b/vars.am
@@ -7,7 +7,7 @@
 
 ###----- Licensing notice ---------------------------------------------------
 ###
-### This file is part of the Sensble Object Design, an object system for C.
+### This file is part of the Sensible Object Design, an object system for C.
 ###
 ### SOD is free software; you can redistribute it and/or modify
 ### it under the terms of the GNU General Public License as published by
@@ -42,6 +42,10 @@ BUILT_SOURCES                 =
 bin_PROGRAMS            =
 check_PROGRAMS          =
 pkginclude_HEADERS      =
+noinst_DATA             =
+TESTS                   =
+
+man_MANS                =
 
 CLEANFILES             += $(BUILT_SOURCES)
 
@@ -55,14 +59,77 @@ AM_CPPFLAGS          = $(SOD_INCLUDES)
 LDADD                   = $(top_builddir)/lib/libsod.la
 
 ###--------------------------------------------------------------------------
+### Standard configuration substitutions.
+
+## Substitute tags in files.
+confsubst                = $(top_srcdir)/config/confsubst
+
+SUBSTITUTIONS = \
+       prefix=$(prefix) exec_prefix=$(exec_prefix) \
+       libdir=$(libdir) includedir=$(includedir) \
+       bindir=$(bindir) sbindir=$(sbindir) \
+       srcdir=$(srcdir) \
+       PACKAGE=$(PACKAGE) VERSION=$(VERSION) ASDF_VERSION=$(ASDF_VERSION)
+
+V_SUBST = $(V_SUBST_@AM_V@)
+V_SUBST_ = $(V_SUBST_@AM_DEFAULT_V@)
+V_SUBST_0 = @echo "  SUBST    $@";
+SUBST = $(V_SUBST)$(confsubst)
+
+###--------------------------------------------------------------------------
 ### Translating SOD input files.
 
 ## The tool location.
 SOD                     = $(top_builddir)/src/sod
 
+## Silent rules treatment.
+V_SOD_c                         = $(V_SOD_c_@AM_V@)
+V_SOD_c_                = $(V_SOD_c_@AM_DEFAULT_V@)
+V_SOD_c_0               = @echo "  SOD[c]   $@";
+V_SOD_h                         = $(V_SOD_h_@AM_V@)
+V_SOD_h_                = $(V_SOD_h_@AM_DEFAULT_V@)
+V_SOD_h_0               = @echo "  SOD[h]   $@";
+
 ## Build rules.
 SUFFIXES               += .c .h .sod
-.sod.c: $(SOD); $(SOD) -tc $<
-.sod.h: $(SOD); $(SOD) -th $<
+.sod.c:; $(V_SOD_c)$(SOD) -M -tc $<
+.sod.h:; $(V_SOD_h)$(SOD) -M -th $<
+%.c: %.sod $(SOD); $(V_SOD_c)$(SOD) -M -tc $<
+%.h: %.sod $(SOD); $(V_SOD_h)$(SOD) -M -th $<
+
+DISTCLEANFILES         += *.c-dep *.h-dep
+
+###--------------------------------------------------------------------------
+### Silent rules for Lisp.
+
+V_DUMP                  = $(V_DUMP_@AM_V@)
+V_DUMP_                         = $(V_DUMP_@AM_DEFAULT_V@)
+V_DUMP_0                = @echo "  DUMP     $@";
+
+V_TEST                  = $(V_TEST_@AM_V@)
+V_TEST_                         = $(V_TEST_@AM_DEFAULT_V@)
+V_TEST_0                = @echo "  TEST     $@";
+
+###--------------------------------------------------------------------------
+### Manpage substitutions.
+
+SUFFIXES               += .1.in .1
+SUFFIXES               += .3.in .3
+SUFFIXES               += .5.in .5
+
+mandefs                         = $(top_srcdir)/common/defs.man
+
+V_MAN                   = $(V_MAN_@AM_V@)
+V_MAN_                  = $(V_MAN_@AM_DEFAULT_V@)
+V_MAN_0                         = @echo "  MAN      $@";
+
+.1.in.1 .3.in.3 .5.in.5:
+       $(V_MAN)
+       $(AM_V_at)sed '/^\.$$/ d; /^\.\\"/ d' $(mandefs) >$@.defs
+       $(AM_V_at)sed -e '/@@@PRE@@@/ {' -e 'r$@.defs' -e 'd' -e '}' \
+               $< >$@.merge
+       $(AM_V_at)$(confsubst) $@.merge >$@.subst $(SUBSTITUTIONS)
+       $(AM_V_at)rm -f $@.merge && mv $@.subst $@
+
 
 ###----- That's all, folks --------------------------------------------------