Mon Apr 29 15:32:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / makefile
index 887c69ac82741ef16889c7cf94d2b6f990bf278a..981259a664c92bf5a2e5d5fc587460e123bdb0ba 100755 (executable)
@@ -1,20 +1,23 @@
-DIRS=jay mcs class tools
+DIRS=jay nant mcs class nunit tools
 
-all:
-       @echo "You must use 'make windows' or 'make linux'."
+all: linux
 
 windows:
        for i in $(DIRS); do                    \
-               (cd $$i; make windows)          \
+               (cd $$i; make linux)            \
        done
 
 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
+