2002-07-21 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / makefile
index 88a0183477041676e8c813956ccee733e73883df..981259a664c92bf5a2e5d5fc587460e123bdb0ba 100755 (executable)
@@ -1,4 +1,4 @@
-DIRS=jay 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
+