From 024a2c06c992b5b00ded529d72a1ec0cb45d2150 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Tue, 4 Dec 2001 23:11:41 +0000 Subject: [PATCH] * src/scm/Makefile.am: remove depend.scm and handle switch from bootstrap.scm to main.scm and build-config.scm. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6212 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/scm/Makefile.am | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/scm/Makefile.am b/src/scm/Makefile.am index aeb5bd7d55..4b6a6304a8 100644 --- a/src/scm/Makefile.am +++ b/src/scm/Makefile.am @@ -4,14 +4,13 @@ SUBDIRS = gnumeric printing gncscmdir = ${GNC_SCM_INSTALL_DIR} gncscmmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash -gncscmmod_DATA = process.scm bootstrap.scm price-quotes.scm +gncscmmod_DATA = process.scm main.scm price-quotes.scm gnc_regular_scm_files = \ + build-config.scm \ command-line.scm \ - depend.scm \ doc.scm \ help-topics-index.scm \ - main.scm \ main-window.scm \ path.scm \ substring-search.scm \ @@ -37,7 +36,7 @@ SCM_FILES = ${gncscm_DATA} ${gncscmmod_DATA} EXTRA_DIST = \ .cvsignore \ - bootstrap.scm.in \ + build-config.scm.in \ config \ startup-design.txt \ ${SCM_FILES} @@ -46,14 +45,13 @@ EXTRA_DIST = \ ## 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 +build-config.scm: build-config.scm.in Makefile rm -f $@.tmp sed < $@.in > $@.tmp \ -e 's:@-VERSION-@:${VERSION}:' \ -e 's:@-GNC_CONFIGDIR-@:${GNC_CONFIGDIR}:' \ -e 's:@-GNC_SHAREDIR-@:${GNC_SHAREDIR}:' \ - -e 's:@-GNC_LIB_INSTALLDIR-@:${libdir}:' \ -e 's:@-GNC_PKGLIB_INSTALLDIR-@:${pkglibdir}:' \ -e 's:@-GNC_HELPDIR-@:${GNC_HELPDIR}:' mv $@.tmp $@ -CLEANFILES += bootstrap.scm +CLEANFILES += build-config.scm