Proper name so Mohammad gets his due credit.
[mono.git] / mcs / build / config-default.make
1 # -*- makefile -*-
2 #
3 # This makefile fragment has (default) configuration
4 # settings for building MCS.
5
6 # DO NOT EDIT THIS FILE! Create config.make and override settings
7 # there.
8
9 RUNTIME_FLAGS = 
10 TEST_HARNESS = $(topdir)/class/lib/nunit-console.exe
11 MCS_FLAGS = $(PLATFORM_DEBUG_FLAGS)
12 LIBRARY_FLAGS = /noconfig
13 CFLAGS = -g -O2
14 INSTALL = /usr/bin/install
15 RUNTIME = mono $(RUNTIME_FLAGS)
16 TEST_RUNTIME=$(PLATFORM_RUNTIME)
17 prefix = /usr/local
18
19 # In case you want to add MCS_FLAGS, this lets you not have to
20 # keep track of the default value
21
22 DEFAULT_MCS_FLAGS := $(MCS_FLAGS)
23
24 # Not all echos are alike. HP/UX doesn't need a -e command.
25 # Test for this here
26
27 ifeq ($(shell echo -e foo),foo)
28 ECHO_ESCAPE=echo -e
29 else
30 ECHO_ESCAPE=echo
31 endif
32
33 # You shouldn't need to set these but might on a 
34 # weird platform.
35
36 # CC = cc
37 # SHELL = /bin/sh
38 # MAKE = gmake