mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 21:04:06 +00:00
0f15515cc2
We have them declared as inline wrappers around double variant in math.h, but that's not enough. clang is smart enough to optimize them back to *f variants anyway. Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
40 lines
525 B
Makefile
40 lines
525 B
Makefile
EXTRADEFS = -D_MT -D_MSVCR_VER=90
|
|
MODULE = msvcr90.dll
|
|
IMPORTLIB = msvcr90
|
|
DELAYIMPORTS = advapi32 user32
|
|
PARENTSRC = ../msvcrt
|
|
|
|
C_SRCS = \
|
|
console.c \
|
|
cpp.c \
|
|
ctype.c \
|
|
data.c \
|
|
dir.c \
|
|
environ.c \
|
|
errno.c \
|
|
except.c \
|
|
except_arm.c \
|
|
except_arm64.c \
|
|
except_i386.c \
|
|
except_x86_64.c \
|
|
exit.c \
|
|
file.c \
|
|
heap.c \
|
|
iob.c \
|
|
locale.c \
|
|
lock.c \
|
|
main.c \
|
|
math.c \
|
|
mathf.c \
|
|
mbcs.c \
|
|
misc.c \
|
|
onexit.c \
|
|
process.c \
|
|
scanf.c \
|
|
string.c \
|
|
thread.c \
|
|
time.c \
|
|
undname.c \
|
|
wcs.c
|
|
|
|
RC_SRCS = msvcr90.rc
|