Changeset 267458 in webkit
- Timestamp:
- Sep 22, 2020, 8:38:17 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
ChangeLog (modified) (1 diff)
-
Makefile.shared (modified) (1 diff)
-
Source/ThirdParty/ChangeLog (modified) (1 diff)
-
Source/ThirdParty/Makefile (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r267441 r267458 1 2020-09-22 Keith Rollin <krollin@apple.com> 2 3 Unify debug and release target aliases 4 https://bugs.webkit.org/show_bug.cgi?id=216863 5 <rdar://problem/69407746> 6 7 Reviewed by Tim Horton. 8 9 All Makefiles have "debug", "d", "release", and "r" for build 10 targets. Others -- but not all -- also include "dev", "develop", 11 "development", "dep", "deploy", and "deployment". Because of this 12 inconsistency, trying to use those additional targets didn't work. It 13 looks like all Makefiles used to support all of those targets, but 14 some got dropped along the way. For instance, the top-level Makefile 15 and Source/Makefile dropped them in 2013 as part of Bug 107863. And it 16 looks like WebKitLibraries/Makefile never had them. Given that those 17 additional targets don't work, it seems like no one uses them, so 18 let's remove them completely. 19 20 * Makefile.shared: 21 1 22 2020-09-22 Keith Rollin <krollin@apple.com> 2 23 -
trunk/Makefile.shared
r267441 r267458 110 110 @$(call invoke_xcode,,GCC_PREPROCESSOR_DEFINITIONS='$(GCC_PREPROCESSOR_ADDITIONS) $$(inherited)') 111 111 112 debug d development dev develop: force112 debug d: force 113 113 @$(call set_webkit_configuration,--debug) 114 114 @$(call invoke_xcode,,GCC_PREPROCESSOR_DEFINITIONS='$(GCC_PREPROCESSOR_ADDITIONS) $$(inherited)') 115 115 116 release r deployment dep deploy: force116 release r: force 117 117 @$(call set_webkit_configuration,--release) 118 118 @$(call invoke_xcode,,GCC_PREPROCESSOR_DEFINITIONS='$(GCC_PREPROCESSOR_ADDITIONS) $$(inherited)') -
trunk/Source/ThirdParty/ChangeLog
r267424 r267458 1 2020-09-22 Keith Rollin <krollin@apple.com> 2 3 Unify debug and release target aliases 4 https://bugs.webkit.org/show_bug.cgi?id=216863 5 <rdar://problem/69407746> 6 7 Reviewed by Tim Horton. 8 9 All Makefiles have "debug", "d", "release", and "r" for build 10 targets. Others -- but not all -- also include "dev", "develop", 11 "development", "dep", "deploy", and "deployment". Because of this 12 inconsistency, trying to use those additional targets didn't work. It 13 looks like all Makefiles used to support all of those targets, but 14 some got dropped along the way. For instance, the top-level Makefile 15 and Source/Makefile dropped them in 2013 as part of Bug 107863. And it 16 looks like WebKitLibraries/Makefile never had them. Given that those 17 additional targets don't work, it seems like no one uses them, so 18 let's remove them completely. 19 20 * Makefile: 21 1 22 2020-09-22 Keith Rollin <krollin@apple.com> 2 23 -
trunk/Source/ThirdParty/Makefile
r267424 r267458 36 36 @$(build_target_for_each_module) 37 37 38 debug d development dev develop:38 debug d: 39 39 @$(build_target_for_each_module) 40 40 41 release r deployment dep deploy:41 release r: 42 42 @$(build_target_for_each_module) 43 43 -
trunk/Tools/ChangeLog
r267448 r267458 1 2020-09-22 Keith Rollin <krollin@apple.com> 2 3 Unify debug and release target aliases 4 https://bugs.webkit.org/show_bug.cgi?id=216863 5 <rdar://problem/69407746> 6 7 Reviewed by Tim Horton. 8 9 All Makefiles have "debug", "d", "release", and "r" for build 10 targets. Others -- but not all -- also include "dev", "develop", 11 "development", "dep", "deploy", and "deployment". Because of this 12 inconsistency, trying to use those additional targets didn't work. It 13 looks like all Makefiles used to support all of those targets, but 14 some got dropped along the way. For instance, the top-level Makefile 15 and Source/Makefile dropped them in 2013 as part of Bug 107863. And it 16 looks like WebKitLibraries/Makefile never had them. Given that those 17 additional targets don't work, it seems like no one uses them, so 18 let's remove them completely. 19 20 * Makefile: 21 1 22 2020-09-22 Alex Christensen <achristensen@webkit.org> 2 23 -
trunk/Tools/Makefile
r267424 r267458 32 32 @$(build_target_for_each_module) 33 33 34 debug d development dev develop:34 debug d: 35 35 @$(build_target_for_each_module) 36 36 37 release r deployment dep deploy:37 release r: 38 38 @$(build_target_for_each_module) 39 39
Note:
See TracChangeset
for help on using the changeset viewer.