From: nick@orpwood.demon.co.uk (Nicholas J Brealey)
Subject: SUMMARY: problem with make in b18
11 Jun 1997 01:06:53 -0700
Approved: cygnus.gnu-win32@cygnus.com
Distribution: cygnus
Message-ID: <199706091911.UAA00604.cygnus.gnu-win32@orpwood.demon.co.uk>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Original-To: gnu-win32@cygnus.com
X-Mailer: VM 6.22 under 19.15 XEmacs Lucid
Original-Sender: owner-gnu-win32@cygnus.com

Thanks to Bill Luebkert and Larry Hall for replying to my query.

In summary, THERE IS A BUG in the way the make works in b18:
Consider the make files one.mk and two.mk where one.mk contains

all:
	@echo MAKEFLAGS=$(MAKEFLAGS)
	@$(MAKE) -f two.mk


and two.mk contains

all:
	@echo MAKEFLAGS=$(MAKEFLAGS)

The correct operation is
$ make -f one.mk CC=xx
MAKEFLAGS=CC=xx
make[1]: Entering directory `/home/nick'
MAKEFLAGS=-w -- CC=xx
make[1]: Leaving directory `/home/nick'
$

But b18 gives:
$ make -f one.mk CC=xx
MAKEFLAGS=CC=xx
MAKEFLAGS=
$

This problem was reported before by 
*jeffdb@netzone.nospam.com.demon.co.uk (Mikey) any possibly others
before I subscribed to this list.

I have got round the problem by using GNU make 3.75 compiled with MSVC 4.0
and the MKS Korn shell (I have not investigated using the CYGWIN
bash with the MSVC GNU make).

There may be work-arounds if you are prepared to re-write
makefiles for the buggy behaviour in b18


Nick

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
