mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
86 lines
1.8 KiB
Makefile
86 lines
1.8 KiB
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
LIBRARY_NAME = AccessibleMarshal
|
|
MODULE = accessibility
|
|
XPIDL_MODULE = accessibility-msaa
|
|
GRE_MODULE = 1
|
|
DEFFILE = $(win_srcdir)/AccessibleMarshal.def
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
XPIDLSRCS = \
|
|
nsIWinAccessNode.idl \
|
|
$(NULL)
|
|
|
|
DEFINES += -DREGISTER_PROXY_DLL
|
|
|
|
GARBAGE += $(MIDL_GENERATED_FILES) done_gen dlldata.c
|
|
|
|
FORCE_SHARED_LIB = 1
|
|
|
|
SRCS_IN_OBJDIR = 1
|
|
|
|
CSRCS = \
|
|
dlldata.c \
|
|
ISimpleDOMNode_p.c \
|
|
ISimpleDOMNode_i.c \
|
|
ISimpleDOMDocument_p.c \
|
|
ISimpleDOMDocument_i.c \
|
|
ISimpleDOMText_p.c \
|
|
ISimpleDOMText_i.c \
|
|
$(NULL)
|
|
|
|
MIDL_GENERATED_FILES = \
|
|
ISimpleDOMNode.h \
|
|
ISimpleDOMNode_p.c \
|
|
ISimpleDOMNode_i.c \
|
|
ISimpleDOMDocument.h \
|
|
ISimpleDOMDocument_p.c \
|
|
ISimpleDOMDocument_i.c \
|
|
ISimpleDOMText.h \
|
|
ISimpleDOMText_p.c \
|
|
ISimpleDOMText_i.c \
|
|
$(NULL)
|
|
|
|
SRCDIR_CSRCS = $(addprefix $(srcdir)/,$(CSRCS))
|
|
|
|
OS_LIBS = $(call EXPAND_LIBNAME,kernel32 rpcns4 rpcrt4 oleaut32)
|
|
|
|
$(MIDL_GENERATED_FILES): done_gen
|
|
|
|
done_gen: ISimpleDOMNode.idl \
|
|
ISimpleDOMDocument.idl \
|
|
ISimpleDOMText.idl
|
|
|
|
$(MIDL) $(MIDL_FLAGS) -I $(srcdir) -Oicf $(srcdir)/ISimpleDOMNode.idl
|
|
$(MIDL) $(MIDL_FLAGS) -Oicf $(srcdir)/ISimpleDOMDocument.idl
|
|
$(MIDL) $(MIDL_FLAGS) -Oicf $(srcdir)/ISimpleDOMText.idl
|
|
touch $@
|
|
|
|
EXPORTS = \
|
|
ISimpleDOMNode.h \
|
|
ISimpleDOMNode_i.c \
|
|
ISimpleDOMDocument.h \
|
|
ISimpleDOMDocument_i.c \
|
|
ISimpleDOMText.h \
|
|
ISimpleDOMText_i.c \
|
|
$(NULL)
|
|
|
|
export:: done_gen
|
|
|
|
# This marshall dll is also registered in the installer
|
|
register::
|
|
regsvr32 -s $(DIST)/bin/$(SHARED_LIBRARY)
|
|
|
|
EMBED_MANIFEST_AT = 2
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|