69 lines
1.2 KiB
Makefile
69 lines
1.2 KiB
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = oleaut32.dll
|
|
IMPORTLIB = oleaut32
|
|
IMPORTS = uuid ole32 rpcrt4 user32 gdi32 advapi32 kernel32 ntdll
|
|
DELAYIMPORTS = comctl32 urlmon
|
|
EXTRADEFS = -D_OLEAUT32_ -DCOM_NO_WINDOWS_H \
|
|
-DENTRY_PREFIX=OLEAUTPS_ -DPROXY_CLSID=CLSID_PSDispatch -DPROXY_DELEGATION -DREGISTER_PROXY_DLL
|
|
EXTRAINCL = @PNGINCL@
|
|
|
|
C_SRCS = \
|
|
connpt.c \
|
|
dispatch.c \
|
|
hash.c \
|
|
oleaut.c \
|
|
olefont.c \
|
|
olepicture.c \
|
|
recinfo.c \
|
|
regsvr.c \
|
|
safearray.c \
|
|
stubs.c \
|
|
tmarshal.c \
|
|
typelib.c \
|
|
typelib2.c \
|
|
ungif.c \
|
|
usrmarshal.c \
|
|
varformat.c \
|
|
variant.c \
|
|
vartype.c
|
|
|
|
RC_SRCS = \
|
|
oleaut32_Bg.rc \
|
|
oleaut32_Cz.rc \
|
|
oleaut32_Da.rc \
|
|
oleaut32_De.rc \
|
|
oleaut32_El.rc \
|
|
oleaut32_En.rc \
|
|
oleaut32_Eo.rc \
|
|
oleaut32_Es.rc \
|
|
oleaut32_Fr.rc \
|
|
oleaut32_Hu.rc \
|
|
oleaut32_It.rc \
|
|
oleaut32_Ko.rc \
|
|
oleaut32_Lt.rc \
|
|
oleaut32_Nl.rc \
|
|
oleaut32_No.rc \
|
|
oleaut32_Pl.rc \
|
|
oleaut32_Pt.rc \
|
|
oleaut32_Ro.rc \
|
|
oleaut32_Ru.rc \
|
|
oleaut32_Si.rc \
|
|
oleaut32_Sv.rc \
|
|
oleaut32_Th.rc \
|
|
oleaut32_Tr.rc \
|
|
oleaut32_Zh.rc \
|
|
version.rc
|
|
|
|
IDL_P_SRCS = \
|
|
oleaut32_oaidl.idl \
|
|
oleaut32_ocidl.idl
|
|
|
|
EXTRA_OBJS = dlldata.o
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|