2001-10-11 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / makefile
index 959e0dc3e80229ef31f18e53899f73b3b5d93954..887c69ac82741ef16889c7cf94d2b6f990bf278a 100755 (executable)
@@ -1,16 +1,18 @@
 DIRS=jay mcs class tools
 
 all:
-       @echo "You must use 'make windows' or 'make unix'."
-       @echo "'make unix' is broken for now."
+       @echo "You must use 'make windows' or 'make linux'."
 
 windows:
        for i in $(DIRS); do                    \
                (cd $$i; make windows)          \
        done
 
-unix:
-       echo "'make unix' is broken for now."
+linux:
+       for i in $(DIRS); do                    \
+               (cd $$i; make linux)            \
+       done
+
        
 clean:
        for i in $(DIRS); do                    \