~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/js/src/xpconnect/src/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# ***** BEGIN LICENSE BLOCK *****
 
3
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
4
#
 
5
# The contents of this file are subject to the Mozilla Public License Version
 
6
# 1.1 (the "License"); you may not use this file except in compliance with
 
7
# the License. You may obtain a copy of the License at
 
8
# http://www.mozilla.org/MPL/
 
9
#
 
10
# Software distributed under the License is distributed on an "AS IS" basis,
 
11
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
# for the specific language governing rights and limitations under the
 
13
# License.
 
14
#
 
15
# The Original Code is Mozilla Communicator client code, released
 
16
# March 31, 1998.
 
17
#
 
18
# The Initial Developer of the Original Code is
 
19
# Netscape Communications Corporation.
 
20
# Portions created by the Initial Developer are Copyright (C) 1998
 
21
# the Initial Developer. All Rights Reserved.
 
22
#
 
23
# Contributor(s):
 
24
#   John Bandhauer <jband@netscape.com>
 
25
#
 
26
# Alternatively, the contents of this file may be used under the terms of
 
27
# either of the GNU General Public License Version 2 or later (the "GPL"),
 
28
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
29
# in which case the provisions of the GPL or the LGPL are applicable instead
 
30
# of those above. If you wish to allow use of your version of this file only
 
31
# under the terms of either the GPL or the LGPL, and not to allow others to
 
32
# use your version of this file under the terms of the MPL, indicate your
 
33
# decision by deleting the provisions above and replace them with the notice
 
34
# and other provisions required by the GPL or the LGPL. If you do not delete
 
35
# the provisions above, a recipient may use your version of this file under
 
36
# the terms of any one of the MPL, the GPL or the LGPL.
 
37
#
 
38
# ***** END LICENSE BLOCK *****
 
39
 
 
40
DEPTH           = ../../../..
 
41
topsrcdir       = @top_srcdir@
 
42
srcdir          = @srcdir@
 
43
VPATH           = @srcdir@
 
44
 
 
45
include $(DEPTH)/config/autoconf.mk
 
46
 
 
47
MODULE          = xpconnect
 
48
LIBRARY_NAME    = xpconnect
 
49
EXPORT_LIBRARY = 1
 
50
SHORT_LIBNAME   = xpconect
 
51
IS_COMPONENT    = 1
 
52
MODULE_NAME     = xpconnect
 
53
GRE_MODULE      = 1
 
54
ifeq ($(OS_ARCH),WINNT)
 
55
LIBRARY_NAME    = xpc$(MOZ_BITS)$(VERSION_NUMBER)
 
56
SHORT_LIBNAME   = xpc$(MOZ_BITS)$(VERSION_NUMBER)
 
57
endif
 
58
 
 
59
PACKAGE_FILE = xpconnect.pkg
 
60
 
 
61
REQUIRES        = xpcom \
 
62
                  string \
 
63
                  js \
 
64
                  caps \
 
65
                  $(NULL)
 
66
 
 
67
CPPSRCS         = \
 
68
                nsScriptError.cpp \
 
69
                nsXPConnect.cpp \
 
70
                xpccallcontext.cpp \
 
71
                xpccomponents.cpp \
 
72
                xpccontext.cpp \
 
73
                xpcconvert.cpp \
 
74
                xpcdebug.cpp \
 
75
                xpcexception.cpp \
 
76
                xpcjsid.cpp \
 
77
                xpcjsruntime.cpp \
 
78
                xpclog.cpp \
 
79
                xpcmaps.cpp \
 
80
                xpcmodule.cpp \
 
81
                xpcruntimesvc.cpp  \
 
82
                xpcstack.cpp \
 
83
                xpcstring.cpp \
 
84
                xpcthreadcontext.cpp \
 
85
                xpcthrower.cpp \
 
86
                xpcwrappedjs.cpp \
 
87
                xpcvariant.cpp \
 
88
                xpcwrappedjsclass.cpp \
 
89
                xpcwrappednative.cpp \
 
90
                xpcwrappednativeinfo.cpp \
 
91
                xpcwrappednativejsops.cpp \
 
92
                xpcwrappednativeproto.cpp \
 
93
                xpcwrappednativescope.cpp \
 
94
                $(NULL)
 
95
ifdef XPC_IDISPATCH_SUPPORT
 
96
CPPSRCS +=      XPCDispObject.cpp       \
 
97
                XPCDispInterface.cpp    \
 
98
                XPCDispConvert.cpp \
 
99
                XPCDispTypeInfo.cpp     \
 
100
                XPCDispTearOff.cpp \
 
101
                XPCIDispatchExtension.cpp \
 
102
                XPCDispParams.cpp \
 
103
                XPCDispParamPropJSClass.cpp \
 
104
                XPCIDispatchClassInfo.cpp \
 
105
                nsDispatchSupport.cpp \
 
106
                $(NULL)
 
107
endif
 
108
 
 
109
include $(topsrcdir)/config/config.mk
 
110
 
 
111
LOCAL_INCLUDES = \
 
112
                -I$(srcdir)/../loader \
 
113
                $(NULL)
 
114
 
 
115
EXTRA_DSO_LDOPTS += \
 
116
                $(MOZ_COMPONENT_LIBS) \
 
117
                $(MOZ_JS_LIBS) \
 
118
                $(NULL)
 
119
 
 
120
ifdef MOZ_JSLOADER
 
121
SHARED_LIBRARY_LIBS = \
 
122
                $(DIST)/lib/$(LIB_PREFIX)jsloader_s.$(LIB_SUFFIX) \
 
123
                $(NULL)
 
124
endif
 
125
 
 
126
include $(topsrcdir)/config/rules.mk
 
127
 
 
128
DEFINES         += -DJSFILE -DJS_THREADSAFE -DEXPORT_XPC_API
 
129
 
 
130
ifdef MOZ_XPCTOOLS
 
131
DEFINES         +=  -DXPC_TOOLS_SUPPORT
 
132
REQUIRES        += xpctools
 
133
endif
 
134
 
 
135
ifdef XPC_IDISPATCH_SUPPORT
 
136
DEFINES         += -DXPC_IDISPATCH_SUPPORT
 
137
ifdef XPC_COMOBJECT
 
138
DEFINES         += -DXPC_COMOBJECT
 
139
endif
 
140
 
 
141
endif
 
142
 
 
143
ifeq ($(OS_ARCH),WINNT)
 
144
ifndef GNU_CXX
 
145
# use pre-compiled headers
 
146
CXXFLAGS        += -YX -Fp$(LIBRARY_NAME).pch
 
147
# precompiled headers require write access to .pch which breaks -j builds
 
148
.NOTPARALLEL::
 
149
endif
 
150
endif
 
151