2002-05-11 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / makefile
index f33ec57fca8d32d686afd88025c1630ce3dc962d..981259a664c92bf5a2e5d5fc587460e123bdb0ba 100755 (executable)
@@ -1,4 +1,4 @@
-DIRS=jay nant nunit mcs class tools
+DIRS=jay nant mcs class nunit tools
 
 all: linux
 
@@ -9,13 +9,15 @@ windows:
 
 linux:
        for i in $(DIRS); do                    \
-               (cd $$i; make linux)            \
+               (cd $$i; make linux) || exit 1; \
        done
 
 test:
+       (cd nunit; make)
        (cd class; make test)
 
 clean:
        for i in $(DIRS); do                    \
                (cd $$i; make clean)            \
        done
+