michael@0: # vim:set ts=8 sw=8 sts=8 noet: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: ifneq ($(OS_TARGET),Android) michael@0: DIST_PROGRAM = crashreporter$(BIN_SUFFIX) michael@0: michael@0: # Don't link the updater against libmozglue. michael@0: MOZ_GLUE_LDFLAGS = michael@0: MOZ_GLUE_PROGRAM_LDFLAGS = michael@0: endif michael@0: michael@0: ifeq ($(OS_ARCH),WINNT) michael@0: LIBS += \ michael@0: $(DEPTH)/toolkit/crashreporter/breakpad-windows-libxul/$(LIB_PREFIX)google_breakpad_libxul_s.$(LIB_SUFFIX) michael@0: $(NULL) michael@0: OS_LIBS += $(call EXPAND_LIBNAME,comctl32 shell32 wininet shlwapi) michael@0: MOZ_WINCONSOLE = 0 michael@0: endif michael@0: michael@0: ifeq ($(OS_ARCH),Darwin) michael@0: LIBS += \ michael@0: $(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/$(LIB_PREFIX)breakpad_common_s.$(LIB_SUFFIX) \ michael@0: $(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/mac/$(LIB_PREFIX)breakpad_mac_common_s.$(LIB_SUFFIX) \ michael@0: $(NULL) michael@0: endif michael@0: michael@0: ifdef MOZ_WIDGET_GTK michael@0: michael@0: LIBS += \ michael@0: $(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/linux/$(LIB_PREFIX)breakpad_linux_common_s.$(LIB_SUFFIX) \ michael@0: $(NULL) michael@0: OS_CXXFLAGS += $(TK_CFLAGS) $(MOZ_GTHREAD_CFLAGS) michael@0: OS_LIBS += $(TK_LIBS) $(MOZ_GTHREAD_LIBS) michael@0: endif michael@0: michael@0: ifeq ($(OS_ARCH),SunOS) michael@0: LIBS += \ michael@0: $(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/solaris/$(LIB_PREFIX)breakpad_solaris_common_s.$(LIB_SUFFIX) \ michael@0: $(NULL) michael@0: OS_CXXFLAGS += $(MOZ_GTK2_CFLAGS) $(MOZ_GTHREAD_CFLAGS) michael@0: OS_LIBS += $(MOZ_GTK2_LIBS) $(MOZ_GTHREAD_LIBS) michael@0: endif michael@0: michael@0: include $(topsrcdir)/config/rules.mk michael@0: michael@0: ifeq ($(OS_ARCH),Darwin) michael@0: libs:: michael@0: $(NSINSTALL) -D $(DIST)/bin/crashreporter.app michael@0: rsync -a -C --exclude '*.in' $(srcdir)/macbuild/Contents $(DIST)/bin/crashreporter.app michael@0: sed -e 's/%APP_NAME%/$(MOZ_APP_DISPLAYNAME)/' $(srcdir)/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in | \ michael@0: iconv -f UTF-8 -t UTF-16 > $(DIST)/bin/crashreporter.app/Contents/Resources/English.lproj/InfoPlist.strings michael@0: $(NSINSTALL) -D $(DIST)/bin/crashreporter.app/Contents/MacOS michael@0: $(NSINSTALL) $(DIST)/bin/crashreporter $(DIST)/bin/crashreporter.app/Contents/MacOS michael@0: rm -f $(DIST)/bin/crashreporter michael@0: endif michael@0: michael@0: ifeq (,$(filter-out Linux SunOS,$(OS_ARCH))) michael@0: libs:: $(topsrcdir)/toolkit/themes/windows/global/throbber/Throbber-small.gif michael@0: $(INSTALL) $^ $(DIST)/bin michael@0: endif