jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 1 | # 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 | |
| 15 | include ../config.mk |
| 16 | |
jat@google.com | fbef83e | 2009-08-06 06:05:01 +0000 | [diff] [blame] | 17 | # Make variables intended to be settable fromthe command line: |
| 18 | # DEFAULT_FIREFOX_LIBS points to /usr/lib/firefox or equivalent |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 19 | # PLUGIN_SDKS points to GWT /plugin-sdks directory |
| 20 | # GECKO_PLATFORM XPCOM ABI (ie, Linux_x86_64-gcc3) |
| 21 | # |
| 22 | |
| 23 | ifeq ($(OS),mac) |
jat@google.com | fbef83e | 2009-08-06 06:05:01 +0000 | [diff] [blame] | 24 | DEFAULT_FIREFOX_LIBS ?= /Applications/Firefox.app/Contents/MacOS |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 25 | RUN_PATH_FLAG = -executable_path |
| 26 | DLL_SUFFIX = .dylib |
| 27 | DLLFLAGS = -bundle -arch i386 -arch ppc |
jat@google.com | fbef83e | 2009-08-06 06:05:01 +0000 | [diff] [blame] | 28 | TARGET_PLATFORM = Darwin_x86-gcc3 |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 29 | # Mac puts multiple architectures into the same files |
jat@google.com | fbef83e | 2009-08-06 06:05:01 +0000 | [diff] [blame] | 30 | GECKO_PLATFORM = Darwin-gcc3 |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 31 | else ifeq ($(OS),linux) |
jat@google.com | fbef83e | 2009-08-06 06:05:01 +0000 | [diff] [blame] | 32 | DEFAULT_FIREFOX_LIBS ?= /usr/lib/firefox |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 33 | RUN_PATH_FLAG = -rpath-link |
| 34 | DLL_SUFFIX = .so |
| 35 | DLLFLAGS = -shared -m$(FLAG32BIT) |
| 36 | TARGET_PLATFORM = Linux_$(ARCH)-gcc3 |
| 37 | else ifeq ($(OS),sun) |
| 38 | TARGET_PLATFORM = SunOS_$(ARCH)-sunc |
| 39 | RUN_PATH_FLAG = -rpath-link |
| 40 | DLLFLAGS= |
| 41 | endif |
| 42 | |
| 43 | export FLAG32BIT |
| 44 | |
| 45 | ifeq ($(BROWSER),) |
| 46 | $(warning Defaulting to FF3 build) |
| 47 | BROWSER=ff3 |
| 48 | endif |
| 49 | |
| 50 | GECKO_MINOR_VERSION= |
| 51 | ifeq ($(BROWSER),ff2) |
| 52 | BROWSER_VERSION = 1.8 |
| 53 | CFLAGS += -DBROWSER_FF2 |
| 54 | else ifeq ($(BROWSER),ff3) |
| 55 | BROWSER_VERSION = 1.9.0 |
| 56 | CFLAGS += -DBROWSER_FF3 |
| 57 | else ifeq ($(BROWSER),ff3+) |
| 58 | BROWSER_VERSION = 1.9.0 |
| 59 | CFLAGS += -DBROWSER_FF3 |
| 60 | GECKO_MINOR_VERSION=.10 |
| 61 | else ifeq ($(BROWSER),ff35) |
| 62 | BROWSER_VERSION = 1.9.1 |
| 63 | CFLAGS += -DBROWSER_FF3 |
| 64 | else |
| 65 | $(error Unrecognized BROWSER of $(BROWSER) - options are ff2, ff3, ff3+, ff35) |
| 66 | endif |
| 67 | |
| 68 | CFLAGS += -fshort-wchar |
| 69 | CXXFLAGS = $(CXXONLYFLAGS) $(CFLAGS) |
| 70 | DIR = $(shell pwd) |
| 71 | |
| 72 | # Set $PLUGIN_SDKS if it isn't in the default location |
| 73 | PLUGIN_SDKS ?= ../../../plugin-sdks |
| 74 | GECKO_PLATFORM ?= $(TARGET_PLATFORM) |
| 75 | |
| 76 | COMMON = ../common/libcommon$(FLAG32BIT).a |
| 77 | |
| 78 | OBJ_OUTDIR = build/$(TARGET_PLATFORM)-$(BROWSER) |
| 79 | EXTENSION_OUTDIR = prebuilt/extension-$(BROWSER) |
| 80 | FF_PLATFORM_DIR = $(EXTENSION_OUTDIR)/platform/$(TARGET_PLATFORM) |
| 81 | |
| 82 | INSTALLER_XPI = prebuilt/oophm-xpcom-$(BROWSER).xpi |
| 83 | FF_DLL = $(OBJ_OUTDIR)/liboophm_$(BROWSER)$(DLL_SUFFIX) |
| 84 | #FF_TYPELIB = build/IOOPHM.xpt |
| 85 | #FF_HEADER = $(OBJ_OUTDIR)/IOOPHM.h |
| 86 | FF_TYPELIB = prebuilt/extension/components/IOOPHM.xpt |
| 87 | FF_HEADER = prebuilt/$(BROWSER)/include/IOOPHM.h |
| 88 | INSTALL_RDF = $(EXTENSION_OUTDIR)/install.rdf |
| 89 | |
| 90 | SDK_PATH = $(PLUGIN_SDKS)/gecko-sdks |
| 91 | GECKO_SDK = $(SDK_PATH)/gecko-$(BROWSER_VERSION) |
| 92 | GECKO_PLAT_INC = $(GECKO_SDK)/$(GECKO_PLATFORM)/include |
| 93 | GECKO_LIBS = $(GECKO_SDK)/$(GECKO_PLATFORM)/lib$(GECKO_MINOR_VERSION) |
| 94 | XPIDL = $(GECKO_SDK)/$(GECKO_PLATFORM)/bin/xpidl |
| 95 | XPIDL_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 |
| 102 | DLLFLAGS += \ |
jat@google.com | fbef83e | 2009-08-06 06:05:01 +0000 | [diff] [blame] | 103 | -L$(DEFAULT_FIREFOX_LIBS) \ |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 104 | -L$(GECKO_LIBS) \ |
jat@google.com | fbef83e | 2009-08-06 06:05:01 +0000 | [diff] [blame] | 105 | -Wl,$(RUN_PATH_FLAG),$(DEFAULT_FIREFOX_LIBS) \ |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 106 | -Wl,$(RUN_PATH_FLAG),$(GECKO_LIBS) \ |
| 107 | -lxpcomglue_s -lxpcom -lnspr4 -lmozjs |
| 108 | |
| 109 | INC += -I$(GECKO_PLAT_INC) -I$(GECKO_SDK)/include -I$(dir $(FF_HEADER)) |
| 110 | |
| 111 | VERSION=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 | |
| 115 | all:: common xpi |
| 116 | |
| 117 | lib:: browser $(OBJ_OUTDIR) $(EXTENSION_OUTDIR) $(FF_DLL) |
| 118 | xpi:: $(EXTENSION_OUTDIR) $(INSTALLER_XPI) |
| 119 | |
| 120 | find-ff-libs:: |
| 121 | ifeq ($(FIREFOX_LIBS),) |
| 122 | $(warning Using firefox libraries at $(GECKO_LIBS)) |
| 123 | $(eval FIREFOX_LIBS = $(GECKO_LIBS)) |
| 124 | endif |
| 125 | |
| 126 | browser:: 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 | |
| 141 | generate-install:: $(EXTENSION_OUTDIR) install-template-$(BROWSER).rdf |
| 142 | sed -e s/GWT_OOPHM_VERSION/$(VERSION)/ install-template-$(BROWSER).rdf >$(INSTALL_RDF) |
| 143 | |
| 144 | SRCS = \ |
| 145 | ExternalWrapper.cpp \ |
| 146 | ModuleOOPHM.cpp \ |
| 147 | FFSessionHandler.cpp \ |
| 148 | JavaObject.cpp \ |
| 149 | JSRunner.cpp \ |
| 150 | XpcomDebug.cpp |
| 151 | |
| 152 | FF_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/ |
| 175 | ifeq ($(OS),mac) |
| 176 | @mkdir -p $(subst x86,ppc,$(FF_PLATFORM_DIR))/components |
| 177 | cp $(FF_DLL) $(subst x86,ppc,$(FF_PLATFORM_DIR))/components/ |
| 178 | endif |
| 179 | |
| 180 | $(OBJ_OUTDIR)/%.o: %.cpp $(FF_HEADER) |
| 181 | $(CXX) $(CXXFLAGS) -c -o $@ -I. -I../common $< |
| 182 | |
| 183 | common $(COMMON): |
| 184 | (cd ../common && $(MAKE)) |
| 185 | |
| 186 | clean: |
| 187 | rm -rf build |
| 188 | |
| 189 | install-platform: |
| 190 | ifdef 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 |
| 193 | ifeq ($(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 |
| 196 | endif |
| 197 | else |
| 198 | @$(MAKE) $@ BROWSER=ff2 |
| 199 | @$(MAKE) $@ BROWSER=ff3 |
| 200 | endif |
| 201 | |
| 202 | DEPEND = g++ -MM -MT'$$(OBJ_OUTDIR)/$(patsubst %.cpp,%.o,$(src))' \ |
| 203 | -I. -I../common -isystem$(dir $(FF_HEADER)) -isystem$(GECKO_SDK)/include $(src) && |
| 204 | depend: 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 |