This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: variable substitution in AC_OUTPUT
- To: Marc van Woerkom <marc dot vanwoerkom at science-factory dot com>
- Subject: Re: variable substitution in AC_OUTPUT
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 25 Nov 2000 16:53:46 -0700
- Cc: automake at gnu dot org
- List-Id: Discussion list for automake <automake.gnu.org><mailto:automake-request@gnu.org?subject=unsubscribe>
- References: <200011221409.eAME9SH14810@nil.science-factory.com>
- Reply-To: tromey at cygnus dot com
>>>>> "Marc" == Marc van Woerkom <marc.vanwoerkom@science-factory.com> writes:
Marc> MY_MODULES="Base Dataserver2"
Marc> MY_MAKEFILES="`for D in $MY_MODULES; do echo $ac_n ' '$D/Makefile; done`"
Marc> AC_OUTPUT([
Marc> Makefile
Marc> macros/Makefile
Marc> $MY_MAKEFILES
Marc> src/Makefile
Marc> test/Makefile
Marc> ])
Automake can't use this. Automake wants to know the list of AC_OUTPUT
files statically. The only approach is to list them all.
Tom