mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 22:50:08 +00:00
4e1e2ee451
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
38 lines
480 B
Makefile
38 lines
480 B
Makefile
MODULE = jscript.dll
|
|
IMPORTS = oleaut32 ole32 user32 advapi32
|
|
|
|
C_SRCS = \
|
|
activex.c \
|
|
array.c \
|
|
bool.c \
|
|
compile.c \
|
|
date.c \
|
|
decode.c \
|
|
dispex.c \
|
|
engine.c \
|
|
error.c \
|
|
function.c \
|
|
global.c \
|
|
jscript.c \
|
|
jscript_main.c \
|
|
json.c \
|
|
jsregexp.c \
|
|
jsstr.c \
|
|
jsutils.c \
|
|
lex.c \
|
|
math.c \
|
|
number.c \
|
|
object.c \
|
|
regexp.c \
|
|
string.c \
|
|
vbarray.c
|
|
|
|
RC_SRCS = jscript.rc
|
|
|
|
IDL_SRCS = \
|
|
jscript_classes.idl \
|
|
jsglobal.idl
|
|
|
|
BISON_SRCS = \
|
|
cc_parser.y \
|
|
parser.y
|