The R Project SVN R

Rev

Rev 57583 | Rev 67240 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 57583 Rev 57924
Line 1... Line 1...
1
#-*- Makefile -*-
1
#-*- Makefile -*-
2
 
2
 
-
 
3
ifeq "$(MULTI)" "64"
-
 
4
WIN = 64
-
 
5
M_ARCH = -m64
-
 
6
AS_ARCH = --64
-
 
7
RC_ARCH = -F pe-x86-64
-
 
8
DT_ARCH = -m i386:x86-64 --as-flags --64
-
 
9
BINPREF64 = $(TOOL_PATH)
-
 
10
endif
-
 
11
ifeq "$(MULTI)" "32"
-
 
12
WIN = 32
-
 
13
# these are normally the defaults
-
 
14
M_ARCH = -m32
-
 
15
AS_ARCH = --32
-
 
16
RC_ARCH = -F pe-i386
-
 
17
DT_ARCH = -m i386 --as-flags --32
-
 
18
BINPREF = $(TOOL_PATH)
-
 
19
endif
-
 
20
 
-
 
21
 
3
ifeq "$(WIN)" "64"
22
ifeq "$(WIN)" "64"
4
R_ARCH = /x64
23
R_ARCH = /x64
5
arch_DEFS = -DR_ARCH='"x64"'
24
arch_DEFS = -DR_ARCH='"x64"'
6
BINPREF = $(BINPREF64)
25
BINPREF = $(BINPREF64)
7
SYMPAT = 's/^.* [BCDRT] / /p'
26
SYMPAT = 's/^.* [BCDRT] / /p'