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