Merge pull request #2774 from marek-safar/roslyn
[mono.git] / mcs / build / platforms / darwin.make
1 # -*- makefile -*-
2 #
3 # Platform-specific makefile rules. This one's for linux.
4 #
5
6 PLATFORM_MCS_FLAGS =
7 PLATFORM_RUNTIME = $(RUNTIME)
8 PLATFORM_CORLIB = mscorlib.dll
9 PLATFORM_TEST_HARNESS_EXCLUDES = NotOnMac,
10
11 EXTERNAL_MCS = mcs
12 EXTERNAL_MBAS = mbas
13 EXTERNAL_RUNTIME = mono
14 #ILDISASM = monodis
15 ILDISASM = false
16
17 PLATFORM_PATH_SEPARATOR = :
18
19 # Define this if this ever will work on Linux
20 # PLATFORM_MAKE_CORLIB_CMP = yes
21
22 # This is for changing / to \ on windows
23 PLATFORM_CHANGE_SEPARATOR_CMD = cat
24
25 hidden_prefix = .
26 hidden_suffix = 
27
28 platform-check:
29         @:
30 # I tried this but apparently Make's version strings aren't that
31 # ... consistent between releases. Whatever.
32 #
33 #       @if ! $(MAKE) --version |grep '^GNU Make version 3' 1>/dev/null 2>&1 ; then \
34 #           echo "*** You need to build MCS with GNU make. Try \`gmake'" ; \
35 #           exit 1 ; \
36 #       fi