doc/list-exports.lisp: Collect symbols from frontend.lisp.
[sod] / vars.am
diff --git a/vars.am b/vars.am
index 7e2a89f..7e7406c 100644 (file)
--- a/vars.am
+++ b/vars.am
@@ -43,6 +43,8 @@ bin_PROGRAMS           =
 check_PROGRAMS          =
 pkginclude_HEADERS      =
 
+dist_man_MANS           =
+
 CLEANFILES             += $(BUILT_SOURCES)
 
 ###--------------------------------------------------------------------------
@@ -55,14 +57,51 @@ 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_$(V))
+V_SUBST_ = $(V_SUBST_$(AM_DEFAULT_VERBOSITY))
+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_$(V))
+V_SOD_c_                = $(V_SOD_c_$(AM_DEFAULT_VERBOSITY))
+V_SOD_c_0               = @echo "  SOD[c] $@";
+V_SOD_h                         = $(V_SOD_h_$(V))
+V_SOD_h_                = $(V_SOD_h_$(AM_DEFAULT_VERBOSITY))
+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: $(SOD); $(V_SOD_c)$(SOD) -tc $<
+.sod.h: $(SOD); $(V_SOD_h)$(SOD) -th $<
+
+###--------------------------------------------------------------------------
+### Silent rules for Lisp.
+
+V_DUMP                  = $(V_DUMP_$(V))
+V_DUMP_                         = $(V_DUMP_$(AM_DEFAULT_VERBOSITY))
+V_DUMP_0                = @echo "  DUMP   $@";
+
+V_TEST                  = $(V_TEST_$(V))
+V_TEST_                         = $(V_TEST_$(AM_DEFAULT_VERBOSITY))
+V_TEST_0                = @echo "  TEST   $@";
 
 ###----- That's all, folks --------------------------------------------------