mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
d92b9475a9
features of this implementation are: - Can open storages created in Windows. - Can create new storages that the windows libraries can read. - Provides all the functionality to create/open/remove and rename streams and storages inside the main storage object.
37 lines
490 B
Makefile
37 lines
490 B
Makefile
DEFS = @DLLFLAGS@ -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = ole
|
|
|
|
C_SRCS = \
|
|
bindctx.c \
|
|
compobj.c \
|
|
filemoniker.c \
|
|
guid.c \
|
|
ifs.c \
|
|
itemmoniker.c \
|
|
moniker.c \
|
|
ole2.c \
|
|
ole2disp.c \
|
|
ole2nls.c \
|
|
olecli.c \
|
|
oledlg.c \
|
|
oleobj.c \
|
|
olesvr.c \
|
|
parsedt.c \
|
|
safearray.c \
|
|
storage.c \
|
|
storage32.c \
|
|
stg_bigblockfile.c \
|
|
stg_stream.c \
|
|
typelib.c \
|
|
variant.c
|
|
|
|
all: $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
### Dependencies:
|