mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
589 B
29 lines
589 B
|
|
noinst_PROGRAMS = dbadd
|
|
|
|
LDADD = \
|
|
${DB_LIBS} \
|
|
${INTLLIBS}
|
|
|
|
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
|