[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Subdirectory builds
From: |
Alexandre Duret-Lutz |
Subject: |
Re: Subdirectory builds |
Date: |
20 Dec 2001 18:29:46 +0100 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 |
>>> "G" == G E Quelch <address@hidden> writes:
G> I am having trouble constructing the files needed by autoconf and/or
G> automake to construct a sub directory build environment. My main
G> directory has no source, but several subdirectories have.
G> I have the following configure.in:
G> AC_INIT
Add a call to AM_INIT_AUTOMAKE(x,y) here.
G> AC_CONFIG_SUBDIRS(db_access/ db_access_new/)
Are you _sure_ you want that? It seems contradictory with the
output of db_access/Makefile and db_access_new/Makefile below.
G> AC_PROG_MAKE_SET
Scratch that. AM_INIT_AUTOMAKE will do it for you.
G> AC_CONFIG_FILES([Makefile])
G> AC_OUTPUT(db_access/Makefile db_access_new/Makefile)
AC_CONFIG_FILES([Makefile db_access/Makefile db_access_new/Makefile])
AC_OUTPUT
[...]
--
Alexandre Duret-Lutz