web site updates
[mono.git] / mcs / makefile
index 959e0dc3e80229ef31f18e53899f73b3b5d93954..dcc2e594d3fd379b7f40c129d0eaebfa09d6ef5b 100755 (executable)
@@ -1,18 +1,23 @@
-DIRS=jay mcs class tools
+DIRS=jay nant mcs class nunit tools doctools
 
-all:
-       @echo "You must use 'make windows' or 'make unix'."
-       @echo "'make unix' is broken for now."
+all: linux
 
 windows:
        for i in $(DIRS); do                    \
-               (cd $$i; make windows)          \
+               (cd $$i; make linux)            \
        done
 
-unix:
-       echo "'make unix' is broken for now."
-       
+linux:
+       for i in $(DIRS); do                    \
+               (cd $$i; make linux)            \
+       done
+
+test:
+       (cd nunit; make)
+       (cd class; make test)
+
 clean:
        for i in $(DIRS); do                    \
                (cd $$i; make clean)            \
        done
+