help-gnu-utils
[Top][All Lists]
Advanced

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

Re: *** target pattern contains no `%'. Stop.


From: Henrik Carlqvist
Subject: Re: *** target pattern contains no `%'. Stop.
Date: Wed, 15 Apr 2009 23:12:35 +0200
User-agent: Pan/0.14.2 (This is not a psychotic episode. It's a cleansing moment of clarity.)

KIRAN <kiraank@gmail.com> wrote:
> OBJS = $(SRC_FILES:.c=.doj)
> DEPS = $(SRC_FILES:.c=.d)
> ASMS = $(ASM_FILES:.s=.doj)

Those lines seem to be your problem, you probably meant:

OBJS = $(SRC_FILES:%.c=%.doj)
DEPS = $(SRC_FILES:%.c=%.d)
ASMS = $(ASM_FILES:%.s=%.doj)

regards Henrik
-- 
The address in the header is only to prevent spam. My real address is:
hc3(at)poolhem.se Examples of addresses which go to spammers:
root@localhost postmaster@localhost



reply via email to

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