Forgot to commit
[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 = -optimize
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 RESGEN = MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_RESGEN)
16 #ILDISASM = monodis
17 ILDISASM = false
18
19 PLATFORM_PATH_SEPARATOR = :
20
21 # Define this if this ever will work on Linux
22 # PLATFORM_MAKE_CORLIB_CMP = yes
23
24 # This is for changing / to \ on windows
25 PLATFORM_CHANGE_SEPARATOR_CMD = cat
26
27 hidden_prefix = .
28 hidden_suffix = 
29
30 platform-check:
31         @:
32 # I tried this but apparently Make's version strings aren't that
33 # ... consistent between releases. Whatever.
34 #
35 #       @if ! $(MAKE) --version |grep '^GNU Make version 3' 1>/dev/null 2>&1 ; then \
36 #           echo "*** You need to build MCS with GNU make. Try \`gmake'" ; \
37 #           exit 1 ; \
38 #       fi