Files
gnucash/doc-tools/Makefile.am
Dave Peticolas 1e3fd8b171 Build help index database using a combination of perl & C. Use
C to create and fill the database, to ensure the same db lib is
used to both create and read the db.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3338 57a11ea4-9604-0410-9ed3-97b8803252fd
2000-12-22 03:47:40 +00:00

28 lines
574 B
Makefile

noinst_PROGRAMS = dbadd
LDADD = \
${DB_LIBS}
dbadd_SOURCES = \
dbadd.c
EXTRA_DIST = \
.cvsignore \
build-help-index.in
noinst_DATA = build-help-index
## We borrow guile's convention and use @-...-@ as the substitution
## brackets here, instead of the usual @...@. This prevents autoconf
## from substituting the values directly into the left-hand sides of
## the sed substitutions.
build-help-index: build-help-index.in
rm -f $@.tmp
sed < $@.in > $@.tmp \
-e 's:@-PERL-@:${PERL}:g'
chmod +x $@.tmp
mv $@.tmp $@
CLEANFILES += build-help-index