mirror of
https://github.com/reactos/wine.git
synced 2024-12-05 10:17:57 +00:00
d1a79ea2eb
Convert all msvcrt locks over to use _lock and _unlock. Explicitly make msvcrt compile with multithreaded option. Fix flag handling in _sopen. Add W->A call for new _swopen.
39 lines
507 B
Makefile
39 lines
507 B
Makefile
EXTRADEFS = -DUSE_MSVCRT_PREFIX -D_MT
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = msvcrt
|
|
EXTRALIBS = $(LIBUNICODE)
|
|
|
|
LDDLLFLAGS = @LDDLLFLAGS@
|
|
SYMBOLFILE = $(MODULE).tmp.o
|
|
|
|
C_SRCS = \
|
|
console.c \
|
|
cpp.c \
|
|
ctype.c \
|
|
data.c \
|
|
dir.c \
|
|
environ.c \
|
|
errno.c \
|
|
except.c \
|
|
exit.c \
|
|
file.c \
|
|
heap.c \
|
|
locale.c \
|
|
lock.c \
|
|
main.c \
|
|
math.c \
|
|
mbcs.c \
|
|
misc.c \
|
|
process.c \
|
|
string.c \
|
|
thread.c \
|
|
time.c \
|
|
wcs.c
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
### Dependencies:
|