Oleg Goldshmidt wrote:
> Use recursive make:
> ppc:
> $(MAKE) ARCH=PPC
It does not work.
Here is a simple makefile:
ppc:
@ $(MAKE) ARCH=PPC
debug:
@ echo performing $@ build for $ARCH
release:
@ echo performing $@ build for $ARCH
I run it with "make ppc debug" and wait to see
"performing debug build for PPC"
Instead it enters non-stopping loop...
=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]