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:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-07-14 14:48:52 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-07-14 14:48:52 +0400
commitf6574c38ac9619e9a69b60ce39288c38ff1aa5e7 (patch)
treea5f8b4befbe151f9045c7c8d57320b81ea94d72d /mcs/build/config-default.make
parentc87a8b492906dc8288cfc613da5a58a782605b9f (diff)
New build system from Peter Williams (peter@newton.cx)
svn path=/trunk/mcs/; revision=16194
Diffstat (limited to 'mcs/build/config-default.make')
-rw-r--r--mcs/build/config-default.make30
1 files changed, 30 insertions, 0 deletions
diff --git a/mcs/build/config-default.make b/mcs/build/config-default.make
new file mode 100644
index 00000000000..3dde4399ded
--- /dev/null
+++ b/mcs/build/config-default.make
@@ -0,0 +1,30 @@
+# -*- makefile -*-
+#
+# This makefile fragment has (default) configuration
+# settings for building MCS.
+#
+# Instead of editing this file, create config.make
+# and override settings there.
+
+RUNTIME_FLAGS =
+TEST_HARNESS = $(topdir)/nunit20/nunit-console/nunit-console.exe
+MCS_FLAGS = $(PLATFORM_DEBUG_FLAGS) /nowarn:1595 /nowarn:0169 \
+ /nowarn:0109 /nowarn:0067 /nowarn:0649 /nowarn:0679
+LIBRARY_FLAGS = /noconfig
+CFLAGS = -g -O2
+INSTALL = /usr/bin/install
+RUNTIME = mono $(RUNTIME_FLAGS)
+TEST_RUNTIME=MONO_PATH="$(topdir)/class/lib:.:$$MONO_PATH" $(RUNTIME) --debug
+prefix = /usr
+
+# In case you want to add MCS_FLAGS, this lets you not have to
+# keep track of the default value
+
+DEFAULT_MCS_FLAGS := $(MCS_FLAGS)
+
+# You shouldn't need to set these but might on a
+# weird platform.
+
+# CC = cc
+# SHELL = /bin/sh
+# MAKE = gmake