On Thu, 2005-04-14 at 20:41 +0200, Federico Prades Illanes wrote:
> enviroment:
> LD_LIBRARY_PATH=./
All that is going to do is set LD_LIBRARY_PATH in the rule for
environment and worse its setting it for just one line since each line
in a rule in GNU Make is handled separately. So that's not going to
work.
If you want to set environment variables inside a Makefile then you can
do
export LD_LIBRARY_PATH=./
in the Makefile.
John.
--
John Graham-Cumming
Home: http://www.jgc.org/
Work: http://www.electric-cloud.com/
POPFile: http://getpopfile.org/
GNU Make Standard Library: http://gmsl.sf.net/
_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make