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

_______________________________________________
help-gnu-utils mailing list
help-gnu-utils@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-utils

Reply via email to