2001-11-09 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / makefile
index 959e0dc3e80229ef31f18e53899f73b3b5d93954..88a0183477041676e8c813956ccee733e73883df 100755 (executable)
@@ -1,17 +1,20 @@
 DIRS=jay mcs class tools
 
-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 class; make test)
+
 clean:
        for i in $(DIRS); do                    \
                (cd $$i; make clean)            \