blob: b9ebe1bd2c799d84e377c03eecfa5f8c51b657e2 [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
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