make-w32
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problem with escaped parens


From: Jon Grant
Subject: Re: Problem with escaped parens
Date: Tue, 28 Nov 2006 15:24:38 +0000
User-agent: Thunderbird 1.5.0.8 (X11/20061117)

Hi,

I'm running 3.81beta4 and 3.80 on Kubuntu 6.06 Linux x86 and see this
parenthesis problem with the attached test Makefile too.

$ make -f Makefile_parenthesis_test
make: *** No rule to make target `Program Files/\(x86\)/test.c', needed
by `all'. Stop.

Therefore, is this issue actually present on *all* the GNU Make builds?

If I remove the (x86) part of the filename in the attached
Makefile_parenthesis_test it works fine (I copied test.c to the parent
directory)

all: Program\ Files/test.c

Earnie, adding quotes as "Program Files/\(x86\)/test.c" leaves still the
same error on Linux.

Jon

all: Program\ Files/\(x86\)/test.c
        echo hello


%.o: %.c
        cc -c $< -o $@

reply via email to

[Prev in Thread] Current Thread [Next in Thread]