Add directories and build system infrastructure for new-user

account hierarchies.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3258 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas
2000-12-07 10:44:33 +00:00
parent db7e7d3c91
commit 522f3e20cb
6 changed files with 22 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
SUBDIRS = macros debian doc intl lib src po rpm SUBDIRS = macros debian doc intl lib src po rpm accounts
docdir = ${GNC_DOC_INSTALL_DIR} docdir = ${GNC_DOC_INSTALL_DIR}

2
accounts/.cvsignore Normal file
View File

@@ -0,0 +1,2 @@
Makefile
Makefile.in

2
accounts/C/.cvsignore Normal file
View File

@@ -0,0 +1,2 @@
Makefile
Makefile.in

7
accounts/C/Makefile.am Normal file
View File

@@ -0,0 +1,7 @@
accountdir = ${GNC_ACCOUNTS_DIR}/C
account_DATA =
EXTRA_DIST = \
.cvsignore

5
accounts/Makefile.am Normal file
View File

@@ -0,0 +1,5 @@
SUBDIRS = C
EXTRA_DIST = \
.cvsignore

View File

@@ -93,12 +93,14 @@ else
GNC_DOC_INSTALL_DIR='${pkgdatadir}/doc' GNC_DOC_INSTALL_DIR='${pkgdatadir}/doc'
fi fi
GNC_ACCOUNTS_DIR=${GNC_SHAREDIR}/accounts
AC_SUBST(GNC_CONFIGDIR) AC_SUBST(GNC_CONFIGDIR)
AC_SUBST(GNC_LIBDIR) AC_SUBST(GNC_LIBDIR)
AC_SUBST(GNC_SHAREDIR) AC_SUBST(GNC_SHAREDIR)
AC_SUBST(GNC_SCM_INSTALL_DIR) AC_SUBST(GNC_SCM_INSTALL_DIR)
AC_SUBST(GNC_DOC_INSTALL_DIR) AC_SUBST(GNC_DOC_INSTALL_DIR)
AC_SUBST(GNC_ACCOUNTS_DIR)
# We should always see these errors... # We should always see these errors...
CFLAGS="${CFLAGS} -Wall" CFLAGS="${CFLAGS} -Wall"
@@ -280,6 +282,8 @@ AC_SUBST(G_WRAP_LINK_ARGS)
AC_OUTPUT( AC_OUTPUT(
dnl # Makefiles dnl # Makefiles
Makefile Makefile
accounts/Makefile
accounts/C/Makefile
debian/Makefile debian/Makefile
doc/Makefile doc/Makefile
doc/examples/Makefile doc/examples/Makefile