26 lines
401 B
Makefile
26 lines
401 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = jscript.dll
|
|
IMPORTS = oleaut32 kernel32
|
|
|
|
RC_SRCS = rsrc.rc
|
|
|
|
C_SRCS = \
|
|
dispex.c \
|
|
engine.c \
|
|
jscript.c \
|
|
jscript_main.c \
|
|
jsutils.c \
|
|
lex.c
|
|
|
|
IDL_TLB_SRCS = jsglobal.idl
|
|
|
|
BISON_SRCS = \
|
|
parser.y
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|