blob: 48ea26ad06f835e984f8a11a56c872b05b475826 [file] [log] [blame]
LIBWEBRTC_MODULE =
WEBINSPECTORUI_MODULE =
ifneq (,$(SDKROOT))
ifneq (,$(findstring iphone,$(SDKROOT)))
LIBWEBRTC_MODULE = ThirdParty/libwebrtc
endif
ifneq (,$(findstring macosx,$(SDKROOT)))
LIBWEBRTC_MODULE = ThirdParty/libwebrtc
WEBINSPECTORUI_MODULE = WebInspectorUI
endif
else
LIBWEBRTC_MODULE = ThirdParty/libwebrtc
WEBINSPECTORUI_MODULE = WebInspectorUI
endif
ifneq (,$(DISABLE_LIBWEBRTC))
LIBWEBRTC_MODULE =
endif
MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE $(LIBWEBRTC_MODULE) WebCore $(WEBINSPECTORUI_MODULE) WebKitLegacy WebKit
all:
@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
debug d:
@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
release r:
@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
analyze:
@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
clean:
@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done