36 lines
488 B
Makefile
36 lines
488 B
Makefile
MODULE = jscript.dll
|
|
IMPORTS = oleaut32 ole32 user32 advapi32
|
|
|
|
C_SRCS = \
|
|
activex.c \
|
|
array.c \
|
|
bool.c \
|
|
date.c \
|
|
dispex.c \
|
|
engine.c \
|
|
error.c \
|
|
function.c \
|
|
global.c \
|
|
jscript.c \
|
|
jscript_main.c \
|
|
jsutils.c \
|
|
lex.c \
|
|
math.c \
|
|
number.c \
|
|
object.c \
|
|
regexp.c \
|
|
string.c \
|
|
vbarray.c
|
|
|
|
RC_SRCS = jscript.rc
|
|
PO_SRCS = jscript.rc
|
|
|
|
IDL_TLB_SRCS = jsglobal.idl
|
|
IDL_R_SRCS = jscript_classes.idl
|
|
IDL_H_SRCS = jscript_classes.idl
|
|
|
|
BISON_SRCS = \
|
|
parser.y
|
|
|
|
@MAKE_DLL_RULES@
|