The R Project SVN R

Rev

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

Rev 52518 Rev 52549
Line 1... Line 1...
1
#-*- Makefile -*-
1
#-*- Makefile -*-
2
 
2
 
3
ifeq ($(strip $(WIN)),64)
3
ifeq ($(strip $(WIN)),64)
4
BINPREF = $(BINPREF64)
4
BINPREF = $(BINPREF64)
-
 
5
SYMPAT = $(SYMPAT64)
5
R_ARCH = /x64
6
R_ARCH = /x64
6
DEFINES = -DR_ARCH='"x64"' -DW64
7
DEFINES = -DR_ARCH='"x64"' -DW64
7
else
8
else
8
R_ARCH = /i386
9
R_ARCH = /i386
9
DEFINES = -DR_ARCH='"i386"' $(DEFS_W64)
10
DEFINES = -DR_ARCH='"i386"' $(DEFS_W64)
-
 
11
SYMPAT = 's/^.* [BCDRT] _/ /p'
10
endif
12
endif
11
 
13
 
12
## -std=c99 would force __STRICT_ANSI__ disabling strdup etc, and also alloca
14
## -std=c99 would force __STRICT_ANSI__ disabling strdup etc, and also alloca
13
C99FLAG=-std=gnu99
15
C99FLAG=-std=gnu99
14
 
16