mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
34 lines
506 B
Makefile
34 lines
506 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = jscript.dll
|
|
IMPORTS = oleaut32 kernel32
|
|
|
|
RC_SRCS = rsrc.rc
|
|
|
|
C_SRCS = \
|
|
array.c \
|
|
bool.c \
|
|
dispex.c \
|
|
engine.c \
|
|
function.c \
|
|
global.c \
|
|
jscript.c \
|
|
jscript_main.c \
|
|
jsutils.c \
|
|
lex.c \
|
|
math.c \
|
|
number.c \
|
|
object.c \
|
|
regexp.c \
|
|
string.c
|
|
|
|
IDL_TLB_SRCS = jsglobal.idl
|
|
|
|
BISON_SRCS = \
|
|
parser.y
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|