accessible/public/msaa/Makefile.in

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/accessible/public/msaa/Makefile.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,52 @@
     1.4 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.7 +
     1.8 +GARBAGE += $(MIDL_GENERATED_FILES) done_gen dlldata.c
     1.9 +
    1.10 +MIDL_GENERATED_FILES = \
    1.11 +	ISimpleDOMNode.h \
    1.12 +	ISimpleDOMNode_p.c \
    1.13 +	ISimpleDOMNode_i.c \
    1.14 +	ISimpleDOMDocument.h \
    1.15 +	ISimpleDOMDocument_p.c \
    1.16 +	ISimpleDOMDocument_i.c \
    1.17 +	ISimpleDOMText.h \
    1.18 +	ISimpleDOMText_p.c \
    1.19 +	ISimpleDOMText_i.c \
    1.20 +	$(NULL)
    1.21 +
    1.22 +OS_LIBS = $(call EXPAND_LIBNAME,kernel32 rpcns4 rpcrt4 oleaut32)
    1.23 +
    1.24 +$(MIDL_GENERATED_FILES): done_gen
    1.25 +
    1.26 +done_gen: ISimpleDOMNode.idl \
    1.27 +          ISimpleDOMDocument.idl \
    1.28 +          ISimpleDOMText.idl
    1.29 +
    1.30 +	$(MIDL) $(MIDL_FLAGS) -I $(srcdir) -Oicf $(srcdir)/ISimpleDOMNode.idl
    1.31 +	$(MIDL) $(MIDL_FLAGS) -Oicf $(srcdir)/ISimpleDOMDocument.idl
    1.32 +	$(MIDL) $(MIDL_FLAGS) -Oicf $(srcdir)/ISimpleDOMText.idl
    1.33 +	touch $@
    1.34 +
    1.35 +export:: done_gen
    1.36 +
    1.37 +# This marshall dll is also registered in the installer
    1.38 +register::
    1.39 +	regsvr32 -s $(DIST)/bin/$(SHARED_LIBRARY)
    1.40 +
    1.41 +EMBED_MANIFEST_AT = 2
    1.42 +
    1.43 +midl_exports := \
    1.44 +    ISimpleDOMDocument.h \
    1.45 +    ISimpleDOMDocument_i.c \
    1.46 +    ISimpleDOMNode.h \
    1.47 +    ISimpleDOMNode_i.c \
    1.48 +    ISimpleDOMText.h \
    1.49 +    ISimpleDOMText_i.c \
    1.50 +    $(NULL)
    1.51 +
    1.52 +INSTALL_TARGETS += midl_exports
    1.53 +midl_exports_FILES := $(midl_exports)
    1.54 +midl_exports_DEST = $(DIST)/include
    1.55 +midl_exports_TARGET := export

mercurial