wim delvaux wrote:
> > include X emits a message even if make is able to build the makefile and
> > succeed.  I want the message emitted with an error if and only if the
> > makefile doesn't exist and make doesn't know how to build it.
> 
>         I do not think you can solve that from within makefiles.  I think
>         you need to patch make ...
> 
>         You cannot modify behavior of make from within make

A feature has been proposed that, if implemented, will expose the number of times make 
has re-exec'ed.  It's similar to MAKE_LEVEL, but will count the number of times make 
started reparsing the makefiles.

If this feature existed, then I think something like the following should be doable:

ifneq ($(MAKE_EXEC_COUNT),0)
  ifeq ($(wildcard aoeu.mk),)
    $(error aoeu.mk: No such file or directory)
  endif
endif

Noel

> 
> > Thanks,
> > Noel

-- 
NOTICE: If received in error, please destroy and notify sender.  Sender does not waive 
confidentiality or privilege, and use is prohibited.


_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-make

Reply via email to