|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
bin_SCRIPTS = scripts/bible2latex \
|
|
|
|
|
scripts/count-words
|
|
|
|
|
bin_SCRIPTS = scripts/bible-app \
|
|
|
|
|
scripts/word-counter \
|
|
|
|
|
scripts/bible2latex
|
|
|
|
|
|
|
|
|
|
# Handle substitution of fully-expanded Autoconf variables.
|
|
|
|
|
do_subst = $(SED) \
|
|
|
|
@ -33,7 +34,9 @@ SUFFIXES = .scm .go
|
|
|
|
|
.scm.go: |
|
|
|
|
$(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<"
|
|
|
|
|
|
|
|
|
|
SOURCES = bible-tools.scm
|
|
|
|
|
SOURCES = bible-tools/latex-export.scm \
|
|
|
|
|
bible-tools/count-words.scm \
|
|
|
|
|
bible-tools/bible-tools.scm
|
|
|
|
|
|
|
|
|
|
TESTS =
|
|
|
|
|
|
|
|
|
@ -51,17 +54,32 @@ AM_SCM_LOG_FLAGS = --no-auto-compile -L "$(top_srcdir)"
|
|
|
|
|
|
|
|
|
|
AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)"
|
|
|
|
|
|
|
|
|
|
info_TEXINFOS = doc/bible-tools.texi
|
|
|
|
|
info_TEXINFOS = doc/bible-tools.texi \
|
|
|
|
|
doc/version.texi
|
|
|
|
|
dvi: # Don't build dvi docs
|
|
|
|
|
|
|
|
|
|
EXTRA_DIST += COPYING \
|
|
|
|
|
EXTRA_DIST += doc/stamp-vti \
|
|
|
|
|
doc/bible-tools.info \
|
|
|
|
|
doc/.dirstamp \
|
|
|
|
|
COPYING \
|
|
|
|
|
HACKING \
|
|
|
|
|
README \
|
|
|
|
|
README.org \
|
|
|
|
|
NEWS \
|
|
|
|
|
AUTHORS \
|
|
|
|
|
ChangeLog \
|
|
|
|
|
hall.scm \
|
|
|
|
|
.gitignore \
|
|
|
|
|
guix.scm \
|
|
|
|
|
build-aux/test-driver.scm \
|
|
|
|
|
build-aux/texinfo.tex \
|
|
|
|
|
build-aux/mdate-sh \
|
|
|
|
|
build-aux/missing \
|
|
|
|
|
build-aux/install-sh \
|
|
|
|
|
configure.ac \
|
|
|
|
|
Makefile.am \
|
|
|
|
|
pre-inst-env.in \
|
|
|
|
|
build-aux/test-driver.scm \
|
|
|
|
|
$(TESTS)
|
|
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|