Changeset 224372 in webkit


Ignore:
Timestamp:
Nov 2, 2017 7:50:59 PM (6 years ago)
Author:
timothy_horton@apple.com
Message:

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

Unreviewed build fix.

  • Source/Makefile:

Take three. An empty SDKROOT should be like Mac (and build all the things).

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r224362 r224372  
     12017-11-02  Tim Horton  <timothy_horton@apple.com>
     2
     3        Reduce duplication in the toplevel Makefile
     4        https://bugs.webkit.org/show_bug.cgi?id=179204
     5
     6        Unreviewed build fix.
     7
     8        * Source/Makefile:
     9        Take three. An empty SDKROOT should be like Mac (and build all the things).
     10
    1112017-11-02  Tim Horton  <timothy_horton@apple.com>
    212
  • trunk/Source/Makefile

    r224363 r224372  
    1 MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE
     1LIBWEBRTC_MODULE =
     2WEBINSPECTORUI_MODULE =
    23
    34ifneq (,$(SDKROOT))
    45        ifneq (,$(findstring iphone,$(SDKROOT)))
    5                 MODULES += ThirdParty/libwebrtc
     6                LIBWEBRTC_MODULE = ThirdParty/libwebrtc
    67        endif
    78        ifneq (,$(findstring macosx,$(SDKROOT)))
    8                 MODULES += ThirdParty/libwebrtc
     9                LIBWEBRTC_MODULE = ThirdParty/libwebrtc
     10                WEBINSPECTORUI_MODULE = WebInspectorUI
    911        endif
     12else
     13        LIBWEBRTC_MODULE = ThirdParty/libwebrtc
     14        WEBINSPECTORUI_MODULE = WebInspectorUI
    1015endif
    1116
    12 MODULES += WebCore
    13 
    14 ifneq (,$(SDKROOT))
    15         ifneq (,$(findstring macosx,$(SDKROOT)))
    16                 MODULES += WebInspectorUI
    17         endif
    18 endif
    19 
    20 MODULES += WebKitLegacy WebKit
     17MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE $(LIBWEBRTC_MODULE) WebCore $(WEBINSPECTORUI_MODULE) WebKitLegacy WebKit
    2118
    2219all:
Note: See TracChangeset for help on using the changeset viewer.