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

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

question on makefile: not stop after compling error


From: yozhang
Subject: question on makefile: not stop after compling error
Date: 28 Oct 2005 16:10:50 -0700
User-agent: G2/0.2

Hi,

I have the following in my makefile. A problem I currently have is if
there are some compiling errors in d4, the compiler will not stop, and
keep working on d5, d6, d7.

Any one knows how to solve this? I am using gcc 3.4.2.

Thanks!

Yong


SUBDIRS= d1 d2 d3 d4 d5 d6 d7

all:
        @echo $(CFLAGS);
        for subdir in $(SUBDIRS); do\
        cd $$subdir;\
        $(MAKE) ARCH=mips;\
        cd -;\
        done



reply via email to

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