2001-10-11 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / makefile
index eb05693978066a3a59d970267305cd9795a9ef4c..887c69ac82741ef16889c7cf94d2b6f990bf278a 100755 (executable)
@@ -1,13 +1,20 @@
-DIRS=jay mcs class
+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                    \
+               (cd $$i; make clean)            \
+       done