Bug 575870 - Enable the firefox button on xp themed, classic, and aero basic. r=dao...
[mozilla-central.git] / xpcom / base / Makefile.in
blobc3984aeb5d0f67e8ca843807b6ff10bbfe8e13e4
2 # ***** BEGIN LICENSE BLOCK *****
3 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
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/
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.
15 # The Original Code is mozilla.org code.
17 # The Initial Developer of the Original Code is
18 # Netscape Communications Corporation.
19 # Portions created by the Initial Developer are Copyright (C) 1998
20 # the Initial Developer. All Rights Reserved.
22 # Contributor(s):
24 # Alternatively, the contents of this file may be used under the terms of
25 # either of the GNU General Public License Version 2 or later (the "GPL"),
26 # or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 # in which case the provisions of the GPL or the LGPL are applicable instead
28 # of those above. If you wish to allow use of your version of this file only
29 # under the terms of either the GPL or the LGPL, and not to allow others to
30 # use your version of this file under the terms of the MPL, indicate your
31 # decision by deleting the provisions above and replace them with the notice
32 # and other provisions required by the GPL or the LGPL. If you do not delete
33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL.
36 # ***** END LICENSE BLOCK *****
38 DEPTH = ../..
39 topsrcdir = @top_srcdir@
40 srcdir = @srcdir@
41 VPATH = @srcdir@
43 include $(DEPTH)/config/autoconf.mk
45 MODULE = xpcom
46 XPIDL_MODULE = xpcom_base
47 LIBRARY_NAME = xpcombase_s
48 GRE_MODULE = 1
49 MOZILLA_INTERNAL_API =1
50 LIBXUL_LIBRARY = 1
52 # TODO: we do this in crashreporter too, should be centralized
53 ifeq ($(OS_ARCH),Linux)
54 DEFINES += -DXP_LINUX
55 endif
57 CPPSRCS = \
58 nsVersionComparatorImpl.cpp \
59 nsConsoleMessage.cpp \
60 nsConsoleService.cpp \
61 nsDebugImpl.cpp \
62 nsErrorService.cpp \
63 nsExceptionService.cpp \
64 nsMemoryImpl.cpp \
65 nsTraceRefcntImpl.cpp \
66 nsInterfaceRequestorAgg.cpp \
67 nsUUIDGenerator.cpp \
68 nsSystemInfo.cpp \
69 nsCycleCollector.cpp \
70 nsStackWalk.cpp \
71 nsMemoryReporterManager.cpp \
72 FunctionTimer.cpp \
73 $(NULL)
75 ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
76 CPPSRCS += nsMacUtilsImpl.cpp
77 endif
79 EXPORTS = \
80 nsAgg.h \
81 nsAutoRef.h \
82 nsCom.h \
83 nsDebugImpl.h \
84 nsIAllocator.h \
85 nsIID.h \
86 nsISupportsObsolete.h \
87 nsStackWalk.h \
88 nsTraceRefcntImpl.h \
89 nsWeakPtr.h \
90 nsInterfaceRequestorAgg.h \
91 $(NULL)
93 EXPORTS_NAMESPACES = mozilla
95 EXPORTS_mozilla = \
96 FunctionTimer.h \
97 $(NULL)
99 ifeq ($(OS_ARCH),WINNT)
100 ifdef MOZ_DEBUG
101 CSRCS += pure_api.c
102 EXPORTS += pure.h
103 endif
104 endif
106 SDK_XPIDLSRCS = \
107 nsIDebug.idl \
108 nsIInterfaceRequestor.idl \
109 nsIMemory.idl \
110 nsIProgrammingLanguage.idl \
111 nsISupports.idl \
112 nsITraceRefcnt.idl \
113 nsIWeakReference.idl \
114 nsrootidl.idl
116 SDK_HEADERS = \
117 nsAutoPtr.h \
118 nsError.h \
119 nsISupportsBase.h \
120 nscore.h \
121 nsCycleCollector.h \
122 nsObjCExceptions.h \
124 XPIDLSRCS = \
125 nsIConsoleListener.idl \
126 nsIConsoleMessage.idl \
127 nsIConsoleService.idl \
128 nsIDebug2.idl \
129 nsIErrorService.idl \
130 nsIException.idl \
131 nsIExceptionService.idl \
132 nsIVersionComparator.idl \
133 nsIUUIDGenerator.idl \
134 nsIMutable.idl \
135 nsIMemoryReporter.idl \
136 $(NULL)
138 ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
139 XPIDLSRCS += nsIMacUtils.idl
140 endif
142 # we don't want the shared lib, but we want to force the creation of a static lib.
143 FORCE_STATIC_LIB = 1
145 # Force use of PIC
146 FORCE_USE_PIC = 1
148 include $(topsrcdir)/config/rules.mk
150 DEFINES += -D_IMPL_NS_COM
152 ifneq (,$(filter gtk2,$(MOZ_WIDGET_TOOLKIT)))
153 CXXFLAGS += $(MOZ_GTK2_CFLAGS)
154 endif
156 LOCAL_INCLUDES += -I$(srcdir)/../build