blob: 5c1f3434d952b698a28988a181a7a5ec09a717fa [file] [log] [blame]
jat@google.com134be542009-08-03 15:30:11 +00001# Copyright 2009 Google Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
15include ../config.mk
16
jat@google.comfbef83e2009-08-06 06:05:01 +000017# Make variables intended to be settable fromthe command line:
18# DEFAULT_FIREFOX_LIBS points to /usr/lib/firefox or equivalent
jat@google.com134be542009-08-03 15:30:11 +000019# PLUGIN_SDKS points to GWT /plugin-sdks directory
20# GECKO_PLATFORM XPCOM ABI (ie, Linux_x86_64-gcc3)
21#
22
23ifeq ($(OS),mac)
jat@google.comfbef83e2009-08-06 06:05:01 +000024DEFAULT_FIREFOX_LIBS ?= /Applications/Firefox.app/Contents/MacOS
jat@google.com134be542009-08-03 15:30:11 +000025RUN_PATH_FLAG = -executable_path
26DLL_SUFFIX = .dylib
27DLLFLAGS = -bundle -arch i386 -arch ppc
jat@google.comfbef83e2009-08-06 06:05:01 +000028TARGET_PLATFORM = Darwin_x86-gcc3
jat@google.com134be542009-08-03 15:30:11 +000029# Mac puts multiple architectures into the same files
jat@google.comfbef83e2009-08-06 06:05:01 +000030GECKO_PLATFORM = Darwin-gcc3
jat@google.com134be542009-08-03 15:30:11 +000031else ifeq ($(OS),linux)
jat@google.comfbef83e2009-08-06 06:05:01 +000032DEFAULT_FIREFOX_LIBS ?= /usr/lib/firefox
jat@google.com134be542009-08-03 15:30:11 +000033RUN_PATH_FLAG = -rpath-link
34DLL_SUFFIX = .so
35DLLFLAGS = -shared -m$(FLAG32BIT)
36TARGET_PLATFORM = Linux_$(ARCH)-gcc3
37else ifeq ($(OS),sun)
38TARGET_PLATFORM = SunOS_$(ARCH)-sunc
39RUN_PATH_FLAG = -rpath-link
40DLLFLAGS=
41endif
42
43export FLAG32BIT
44
45ifeq ($(BROWSER),)
46$(warning Defaulting to FF3 build)
47BROWSER=ff3
48endif
49
50GECKO_MINOR_VERSION=
51ifeq ($(BROWSER),ff2)
52BROWSER_VERSION = 1.8
53CFLAGS += -DBROWSER_FF2
54else ifeq ($(BROWSER),ff3)
55BROWSER_VERSION = 1.9.0
56CFLAGS += -DBROWSER_FF3
57else ifeq ($(BROWSER),ff3+)
58BROWSER_VERSION = 1.9.0
59CFLAGS += -DBROWSER_FF3
60GECKO_MINOR_VERSION=.10
61else ifeq ($(BROWSER),ff35)
62BROWSER_VERSION = 1.9.1
63CFLAGS += -DBROWSER_FF3
64else
65$(error Unrecognized BROWSER of $(BROWSER) - options are ff2, ff3, ff3+, ff35)
66endif
67
68CFLAGS += -fshort-wchar
69CXXFLAGS = $(CXXONLYFLAGS) $(CFLAGS)
70DIR = $(shell pwd)
71
72# Set $PLUGIN_SDKS if it isn't in the default location
73PLUGIN_SDKS ?= ../../../plugin-sdks
74GECKO_PLATFORM ?= $(TARGET_PLATFORM)
75
76COMMON = ../common/libcommon$(FLAG32BIT).a
77
78OBJ_OUTDIR = build/$(TARGET_PLATFORM)-$(BROWSER)
79EXTENSION_OUTDIR = prebuilt/extension-$(BROWSER)
80FF_PLATFORM_DIR = $(EXTENSION_OUTDIR)/platform/$(TARGET_PLATFORM)
81
82INSTALLER_XPI = prebuilt/oophm-xpcom-$(BROWSER).xpi
83FF_DLL = $(OBJ_OUTDIR)/liboophm_$(BROWSER)$(DLL_SUFFIX)
84#FF_TYPELIB = build/IOOPHM.xpt
85#FF_HEADER = $(OBJ_OUTDIR)/IOOPHM.h
86FF_TYPELIB = prebuilt/extension/components/IOOPHM.xpt
87FF_HEADER = prebuilt/$(BROWSER)/include/IOOPHM.h
88INSTALL_RDF = $(EXTENSION_OUTDIR)/install.rdf
89
90SDK_PATH = $(PLUGIN_SDKS)/gecko-sdks
91GECKO_SDK = $(SDK_PATH)/gecko-$(BROWSER_VERSION)
92GECKO_PLAT_INC = $(GECKO_SDK)/$(GECKO_PLATFORM)/include
93GECKO_LIBS = $(GECKO_SDK)/$(GECKO_PLATFORM)/lib$(GECKO_MINOR_VERSION)
94XPIDL = $(GECKO_SDK)/$(GECKO_PLATFORM)/bin/xpidl
95XPIDL_FLAGS = -I$(GECKO_SDK)/idl
96
97#DLLFLAGS += \
98# -L$(GECKO_LIBS) \
99# -L$(FIREFOX_LIBS) \
100# -Wl,$(RUN_PATH_FLAG),$(FIREFOX_LIBS) \
101# -lxpcomglue_s -lxpcom -lnspr4 -lmozjs
102DLLFLAGS += \
jat@google.comfbef83e2009-08-06 06:05:01 +0000103 -L$(DEFAULT_FIREFOX_LIBS) \
jat@google.com134be542009-08-03 15:30:11 +0000104 -L$(GECKO_LIBS) \
jat@google.comfbef83e2009-08-06 06:05:01 +0000105 -Wl,$(RUN_PATH_FLAG),$(DEFAULT_FIREFOX_LIBS) \
jat@google.com134be542009-08-03 15:30:11 +0000106 -Wl,$(RUN_PATH_FLAG),$(GECKO_LIBS) \
107 -lxpcomglue_s -lxpcom -lnspr4 -lmozjs
108
109INC += -I$(GECKO_PLAT_INC) -I$(GECKO_SDK)/include -I$(dir $(FF_HEADER))
110
111VERSION=0.0.$(shell ./getversion).$(shell date +%Y%m%d%H%M%S)
112
113.PHONY: all xpi lib common browser clean depend install install-platform find-ff-libs
114
115all:: common xpi
116
117lib:: browser $(OBJ_OUTDIR) $(EXTENSION_OUTDIR) $(FF_DLL)
118xpi:: $(EXTENSION_OUTDIR) $(INSTALLER_XPI)
119
120find-ff-libs::
121ifeq ($(FIREFOX_LIBS),)
122 $(warning Using firefox libraries at $(GECKO_LIBS))
123 $(eval FIREFOX_LIBS = $(GECKO_LIBS))
124endif
125
126browser:: find-ff-libs
127# if [ ! -r $(GECKO_LIBS)/libxpcom.so ]
128# then
129# $(error Missing Firefox libraries at $(GECKO_LIBS))
130# fi
131
132# Not needed currently, but keeping around for now in case we change back to
133# putting it in build
134$(EXTENSION_OUTDIR):
135 rm -rf $@
136 mkdir -p $@
137 #cp -r prebuilt/extension/. $(EXTENSION_OUTDIR)
138 cp -r prebuilt/extension-$(BROWSER)/. $(EXTENSION_OUTDIR)
139 @mkdir -p $@/components
140
141generate-install:: $(EXTENSION_OUTDIR) install-template-$(BROWSER).rdf
142 sed -e s/GWT_OOPHM_VERSION/$(VERSION)/ install-template-$(BROWSER).rdf >$(INSTALL_RDF)
143
144SRCS = \
145 ExternalWrapper.cpp \
146 ModuleOOPHM.cpp \
147 FFSessionHandler.cpp \
148 JavaObject.cpp \
149 JSRunner.cpp \
150 XpcomDebug.cpp
151
152FF_OBJS = $(patsubst %.cpp,$(OBJ_OUTDIR)/%.o,$(SRCS))
153
154$(FF_OBJS): $(OBJ_OUTDIR)
155
156$(OBJ_OUTDIR)::
157 @mkdir -p $@
158
159$(INSTALLER_XPI): $(FF_TYPELIB) $(EXTENSION_OUTDIR) generate-install $(shell find prebuilt/extension $(EXTENSION_OUTDIR)) $(FF_DLL)
160 @mkdir -p $(EXTENSION_OUTDIR)/components
161 (cd prebuilt/extension; find . \( -name .svn -prune \) -o -print | cpio -pmdua ../../$(EXTENSION_OUTDIR))
162 -rm $(INSTALLER_XPI)
163 (cd $(EXTENSION_OUTDIR) && zip -r -D -9 $(DIR)/$(INSTALLER_XPI) * -x '*/.svn/*' -x 'META-INF/*')
164
165$(FF_TYPELIB): IOOPHM.idl
166 $(XPIDL) $(XPIDL_FLAGS) -m typelib -e $@ $<
167
168$(FF_HEADER): IOOPHM.idl
169 $(XPIDL) $(XPIDL_FLAGS) -m header -e $@ $<
170
171$(FF_DLL): $(FF_OBJS) $(COMMON)
172 $(CXX) -m$(FLAG32BIT) -o $@ $(FF_OBJS) $(COMMON) $(DLLFLAGS)
173 @mkdir -p $(FF_PLATFORM_DIR)/components
174 cp $(FF_DLL) $(FF_PLATFORM_DIR)/components/
175ifeq ($(OS),mac)
176 @mkdir -p $(subst x86,ppc,$(FF_PLATFORM_DIR))/components
177 cp $(FF_DLL) $(subst x86,ppc,$(FF_PLATFORM_DIR))/components/
178endif
179
180$(OBJ_OUTDIR)/%.o: %.cpp $(FF_HEADER)
181 $(CXX) $(CXXFLAGS) -c -o $@ -I. -I../common $<
182
183common $(COMMON):
184 (cd ../common && $(MAKE))
185
186clean:
187 rm -rf build
188
189install-platform:
190ifdef BROWSER
191 @-mkdir -p $(subst $(EXTENSION_OUTDIR),prebuilt/extension-$(BROWSER),$(FF_PLATFORM_DIR))/components
192 -cp $(FF_DLL) $(subst $(EXTENSION_OUTDIR),prebuilt/extension-$(BROWSER),$(FF_PLATFORM_DIR))/components
193ifeq ($(OS),mac)
194 @-mkdir -p $(subst $(EXTENSION_OUTDIR),prebuilt/extension-$(BROWSER),$(subst x86,ppc,$(FF_PLATFORM_DIR)))/components
195 -cp $(FF_DLL) $(subst $(EXTENSION_OUTDIR),prebuilt/extension-$(BROWSER),$(subst x86,ppc,$(FF_PLATFORM_DIR)))/components
196endif
197else
198 @$(MAKE) $@ BROWSER=ff2
199 @$(MAKE) $@ BROWSER=ff3
200endif
201
202DEPEND = g++ -MM -MT'$$(OBJ_OUTDIR)/$(patsubst %.cpp,%.o,$(src))' \
203 -I. -I../common -isystem$(dir $(FF_HEADER)) -isystem$(GECKO_SDK)/include $(src) &&
204depend: browser $(OBJ_OUTDIR) $(FF_HEADER)
205 ($(foreach src,$(SRCS),$(DEPEND)) true) >>Makefile
206# makedepend -- $(CFLAGS) -- $(SRCS)
207
208# DO NOT DELETE
209$(OBJ_OUTDIR)/ExternalWrapper.o: ExternalWrapper.cpp ExternalWrapper.h \
210 mozincludes.h FFSessionHandler.h SessionData.h \
211 ../common/SessionHandler.h ../common/BrowserChannel.h ../common/Value.h \
212 ../common/Debug.h ../common/Platform.h ../common/DebugLevel.h \
213 ../common/BrowserChannel.h ../common/scoped_ptr/scoped_ptr.h \
214 ../common/LoadModuleMessage.h ../common/Message.h \
215 ../common/BrowserChannel.h ../common/HostChannel.h ../common/Debug.h \
216 ../common/ByteOrder.h ../common/Platform.h ../common/Socket.h \
217 ../common/Platform.h ../common/Debug.h ../common/AllowedConnections.h \
218 ../common/Platform.h ../common/Message.h ../common/ReturnMessage.h \
219 ../common/Message.h ../common/BrowserChannel.h ../common/Value.h \
220 ../common/Value.h ../common/SessionHandler.h ../common/SessionHandler.h \
221 ../common/ServerMethods.h ../common/Value.h
222$(OBJ_OUTDIR)/ModuleOOPHM.o: ModuleOOPHM.cpp ../common/Debug.h \
223 ../common/Platform.h ../common/DebugLevel.h ExternalWrapper.h \
224 mozincludes.h FFSessionHandler.h SessionData.h \
225 ../common/SessionHandler.h ../common/BrowserChannel.h ../common/Value.h \
226 ../common/Debug.h ../common/BrowserChannel.h \
227 ../common/scoped_ptr/scoped_ptr.h
228$(OBJ_OUTDIR)/FFSessionHandler.o: FFSessionHandler.cpp FFSessionHandler.h \
229 mozincludes.h SessionData.h ../common/SessionHandler.h \
230 ../common/BrowserChannel.h ../common/Value.h ../common/Debug.h \
231 ../common/Platform.h ../common/DebugLevel.h ../common/BrowserChannel.h \
232 ../common/HostChannel.h ../common/Debug.h ../common/ByteOrder.h \
233 ../common/Platform.h ../common/Socket.h ../common/Platform.h \
234 ../common/Debug.h ../common/AllowedConnections.h ../common/Platform.h \
235 ../common/Message.h ../common/ReturnMessage.h ../common/Message.h \
236 ../common/BrowserChannel.h ../common/Value.h ../common/Value.h \
237 ../common/SessionHandler.h JavaObject.h JSRunner.h XpcomDebug.h \
238 ../common/scoped_ptr/scoped_ptr.h RootedObject.h \
239 ../common/InvokeMessage.h ../common/Message.h \
240 ../common/BrowserChannel.h ../common/Value.h ../common/ServerMethods.h \
241 ../common/Value.h
242$(OBJ_OUTDIR)/JavaObject.o: JavaObject.cpp JavaObject.h mozincludes.h \
243 FFSessionHandler.h SessionData.h ../common/SessionHandler.h \
244 ../common/BrowserChannel.h ../common/Value.h ../common/Debug.h \
245 ../common/Platform.h ../common/DebugLevel.h ../common/BrowserChannel.h \
246 ../common/ServerMethods.h ../common/Value.h XpcomDebug.h \
247 ../common/HostChannel.h ../common/Debug.h ../common/ByteOrder.h \
248 ../common/Platform.h ../common/Socket.h ../common/Platform.h \
249 ../common/Debug.h ../common/AllowedConnections.h ../common/Platform.h \
250 ../common/Message.h ../common/ReturnMessage.h ../common/Message.h \
251 ../common/BrowserChannel.h ../common/Value.h ../common/Value.h \
252 ../common/SessionHandler.h ../common/InvokeMessage.h \
253 ../common/Message.h ../common/BrowserChannel.h ../common/Value.h \
254 ../common/scoped_ptr/scoped_ptr.h
255$(OBJ_OUTDIR)/JSRunner.o: JSRunner.cpp JSRunner.h mozincludes.h
256$(OBJ_OUTDIR)/XpcomDebug.o: XpcomDebug.cpp XpcomDebug.h mozincludes.h \
257 JavaObject.h