Title: [224363] trunk/Source/Makefile
Revision
224363
Author
[email protected]
Date
2017-11-02 16:50:58 -0700 (Thu, 02 Nov 2017)

Log Message

Reduce duplication in the toplevel Makefile
https://bugs.webkit.org/show_bug.cgi?id=179204

* Source/Makefile:
Address some post-landing review comments to keep the order of the MODULES correct.

Modified Paths

Diff

Modified: trunk/Source/Makefile (224362 => 224363)


--- trunk/Source/Makefile	2017-11-02 23:50:14 UTC (rev 224362)
+++ trunk/Source/Makefile	2017-11-02 23:50:58 UTC (rev 224363)
@@ -1,14 +1,24 @@
-MODULES = bmalloc WTF _javascript_Core ThirdParty/ANGLE WebCore WebKitLegacy WebKit
+MODULES = bmalloc WTF _javascript_Core ThirdParty/ANGLE 
 
 ifneq (,$(SDKROOT))
-	ifneq (,$(findstring macosx,$(SDKROOT)))
-		MODULES += WebInspectorUI ThirdParty/libwebrtc
-	endif
 	ifneq (,$(findstring iphone,$(SDKROOT)))
 		MODULES += ThirdParty/libwebrtc
 	endif
+	ifneq (,$(findstring macosx,$(SDKROOT)))
+		MODULES += ThirdParty/libwebrtc
+	endif
 endif
 
+MODULES += WebCore 
+
+ifneq (,$(SDKROOT))
+	ifneq (,$(findstring macosx,$(SDKROOT)))
+		MODULES += WebInspectorUI
+	endif
+endif
+
+MODULES += WebKitLegacy WebKit
+
 all:
 	@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
 	if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to