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
path: root/mcs
diff options
context:
space:
mode:
authorSean MacIsaac <macisaac@mono-cvs.ximian.com>2001-09-26 13:58:25 +0400
committerSean MacIsaac <macisaac@mono-cvs.ximian.com>2001-09-26 13:58:25 +0400
commitd5a24f04dda7579263f214186ff6d94bf43646c6 (patch)
tree2ab39b1eaaf130d0f352b52ef3d0873b288e3e4b /mcs
parentcb4662adf7f543e3bd036897dc4c68ddc31c9ba9 (diff)
changed target from unix to linux
svn path=/trunk/mcs/; revision=983
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/makefile2
-rw-r--r--mcs/jay/makefile2
-rwxr-xr-xmcs/makefile10
-rwxr-xr-xmcs/mcs/makefile2
-rw-r--r--mcs/tools/makefile2
5 files changed, 12 insertions, 6 deletions
diff --git a/mcs/class/makefile b/mcs/class/makefile
index 313d2079ff6..6a0468646e0 100644
--- a/mcs/class/makefile
+++ b/mcs/class/makefile
@@ -4,6 +4,8 @@ all:
windows:
../nant/NAnt.exe windows
+unix: linux
+
linux:
../nant/NAnt.exe linux
diff --git a/mcs/jay/makefile b/mcs/jay/makefile
index 82cce87c559..10991a5435f 100644
--- a/mcs/jay/makefile
+++ b/mcs/jay/makefile
@@ -11,4 +11,4 @@ clean:
windows: jay
-unix: jay
+linux: jay
diff --git a/mcs/makefile b/mcs/makefile
index 959e0dc3e80..887c69ac827 100755
--- a/mcs/makefile
+++ b/mcs/makefile
@@ -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 \
diff --git a/mcs/mcs/makefile b/mcs/mcs/makefile
index 9d5938c158f..f7fd90988a7 100755
--- a/mcs/mcs/makefile
+++ b/mcs/mcs/makefile
@@ -38,7 +38,7 @@ all: cs-parser.cs
windows: all
-unix: all
+linux: all
opt:
$(CSC) /optimize+ /target:exe /r:System.dll /out:compiler.exe $(COMPILER_SOURCES)
diff --git a/mcs/tools/makefile b/mcs/tools/makefile
index 757dcca1b13..cf60610dec2 100644
--- a/mcs/tools/makefile
+++ b/mcs/tools/makefile
@@ -4,6 +4,8 @@ CSCFLAGS=/nologo /debug+ /debug:full
windows: verifier.exe
+linux: verifier.exe
+
verifier.exe: verifier.cs
$(CSC) $(CSCFLAGS) verifier.cs