On Tue, 26 Sep 2000 15:59:37 -0400 (EDT), [EMAIL PROTECTED] wrote:

>I would like to be able to build both debug and release builds of
>some libraries and apps that are using the GNU build system. It seems
>that there must be an easy way to specify multiple targets (one simply
>stripped of symbols). Can anyone point me to some docs or have
>suggestions on how this can be achieved with the GNU autoconf/automake
>/libtool/make/gcc toolchain?

mkdir release
../src/configure
make
cd ..
mkdir debug
../src/configure --with-debug
make

# DONE! :)

Of course, you need to handle --with-debug in your "configure.in".


Ciao, Jürgen

--
Jürgen Hermann, Developer ([EMAIL PROTECTED])
WEB.DE AG, http://webde-ag.de/



Reply via email to