mirror of
https://github.com/reactos/wine.git
synced 2024-12-11 13:26:00 +00:00
22 lines
300 B
Makefile
22 lines
300 B
Makefile
MODULE = vbscript.dll
|
|
IMPORTS = oleaut32
|
|
|
|
C_SRCS = \
|
|
compile.c \
|
|
interp.c \
|
|
lex.c \
|
|
vbdisp.c \
|
|
vbscript.c \
|
|
vbscript_main.c
|
|
|
|
BISON_SRCS = \
|
|
parser.y
|
|
|
|
RC_SRCS = vbscript.rc
|
|
|
|
IDL_TLB_SRCS = vbsglobal.idl
|
|
IDL_H_SRCS = vbscript_classes.idl
|
|
IDL_R_SRCS = vbscript_classes.idl
|
|
|
|
@MAKE_DLL_RULES@
|