2000-06-02 04:00:31 -05:00
|
|
|
|
|
|
|
SUBDIRS = gnumeric printing qif-import report srfi
|
|
|
|
|
|
|
|
gncscmdir = ${GNC_SCM_INSTALL_DIR}
|
|
|
|
|
2000-06-05 00:51:39 -05:00
|
|
|
gnc_autogen_scm_files = \
|
|
|
|
bootstrap.scm
|
|
|
|
|
|
|
|
gnc_regular_scm_files = \
|
2000-06-02 04:00:31 -05:00
|
|
|
c-interface.scm \
|
|
|
|
command-line.scm \
|
|
|
|
config-var.scm \
|
|
|
|
date-utilities.scm \
|
|
|
|
depend.scm \
|
|
|
|
doc.scm \
|
|
|
|
engine-interface.scm \
|
|
|
|
engine-utilities.scm \
|
|
|
|
extensions.scm \
|
|
|
|
graph.scm \
|
|
|
|
hooks.scm \
|
|
|
|
html-generator.scm \
|
|
|
|
main.scm \
|
|
|
|
options.scm \
|
|
|
|
path.scm \
|
|
|
|
prefs.scm \
|
|
|
|
report-utilities.scm \
|
|
|
|
report.scm \
|
|
|
|
slib-backup.scm \
|
|
|
|
startup.scm \
|
|
|
|
structure.scm \
|
|
|
|
substring-search.scm \
|
|
|
|
testbed.scm \
|
|
|
|
text-export.scm \
|
2000-06-26 14:38:45 -05:00
|
|
|
tip-of-the-day.scm \
|
|
|
|
tip-list.scm \
|
2000-06-02 04:00:31 -05:00
|
|
|
utilities.scm \
|
2000-10-23 04:41:51 -05:00
|
|
|
xml-generator.scm \
|
|
|
|
iso-4217-currencies.scm \
|
|
|
|
engine-init.scm \
|
|
|
|
commodity-table.scm \
|
2000-12-20 18:35:47 -06:00
|
|
|
commodity-import.scm \
|
|
|
|
help-topics-index.scm
|
2000-06-02 04:00:31 -05:00
|
|
|
|
2000-06-05 00:51:39 -05:00
|
|
|
gncscm_DATA = ${gnc_autogen_scm_files} ${gnc_regular_scm_files}
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
.cvsignore \
|
|
|
|
bootstrap.scm.in \
|
|
|
|
design.txt \
|
|
|
|
startup-design.txt \
|
|
|
|
${gnc_regular_scm_files}
|
2000-06-02 04:00:31 -05:00
|
|
|
|
|
|
|
## 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. *sigh*
|
|
|
|
bootstrap.scm: bootstrap.scm.in Makefile
|
|
|
|
rm -f $@.tmp
|
|
|
|
sed < $@.in > $@.tmp \
|
|
|
|
-e 's:@-VERSION-@:${VERSION}:' \
|
|
|
|
-e 's:@-GNC_CONFIGDIR-@:${GNC_CONFIGDIR}:' \
|
2000-09-09 05:25:53 -05:00
|
|
|
-e 's:@-GNC_SHAREDIR-@:${GNC_SHAREDIR}:' \
|
|
|
|
-e 's:@-GNC_HELPDIR-@:${GNC_HELPDIR}:'
|
2000-06-02 04:00:31 -05:00
|
|
|
mv $@.tmp $@
|
|
|
|
CLEANFILES += bootstrap.scm
|