Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/makefile')
-rwxr-xr-xmcs/makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/mcs/makefile b/mcs/makefile
deleted file mode 100755
index 981259a664c..00000000000
--- a/mcs/makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-DIRS=jay nant mcs class nunit tools
-
-all: linux
-
-windows:
- for i in $(DIRS); do \
- (cd $$i; make linux) \
- done
-
-linux:
- for i in $(DIRS); do \
- (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
-