Thank you Shlomi and Offer. FYI, I've settled on the following for my
GNU Make file:
-David
which_make = \
for $$p (split q{;}, $$ENV{PATH}) { \
for $$e (q{}, q{.exe}) { \
print qq{$$p\\$(MAKE)} and exit \
if -x qq{$$p/$(MAKE)} . $$e; \
} \
}
ifeq ($(MAKE),$(notdir $(MAKE)))
MAKE := $(shell perl -e "$(which_make)" )
endif
all:
@echo MAKE = $(MAKE)