[bug #18834] VCS Variable expansion

2007-01-19 Thread Jim Hanley
URL: Summary: VCS Variable expansion Project: make Submitted by: dgtlrift Submitted on: Friday 01/19/2007 at 18:00 Severity: 3 - Normal Item Group: Enhancement

RE: Bug: make igores options, switches and targets

2007-01-19 Thread Dave Korn
On 19 January 2007 11:57, James Coleman wrote: > Is your make aliased to something else or is it a script ? > And if it is invoked from sh is the same make invoked? > Could there be any environment difference causing the problem? > which make > sh -c 'which make' > ls -al `which make` > a

Re: Bug: make igores options, switches and targets

2007-01-19 Thread James Coleman
Georg-Johann Lay wrote: > make clean echo clean clean That proves that your make does accept the command-line target. So it must be the shell or ?? something. Not a problem with make I think. your Makefile and sh -c 'make clean' call works okay within cygwin for me: $ sh -c 'make clean' ec

Re: Bug: make igores options, switches and targets

2007-01-19 Thread Eli Zaretskii
> Date: Thu, 18 Jan 2007 22:28:12 +0100 > From: Georg-Johann Lay <[EMAIL PROTECTED]> > > I have some trouble with GNU make. The make comes from WinAVR, a > distribution of avr-gcc for Win32, i.e. mingw. It is the most recent > build from 2006-04-21 But the output you show from "make --version",

Bug: make igores options, switches and targets

2007-01-19 Thread Georg-Johann Lay
Hi you experts, I have some trouble with GNU make. The make comes from WinAVR, a distribution of avr-gcc for Win32, i.e. mingw. It is the most recent build from 2006-04-21 Consider the following Makefile: # START .PHONY: all clean all: echo all clean: echo clean #END And t