KIRAN <kira...@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:
r...@localhost postmas...@localhost

Reply via email to