OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 # - "nacl" : cross-compile for Native Client (ia32 and x64) | 231 # - "nacl" : cross-compile for Native Client (ia32 and x64) |
232 # - default (no target specified): build all DEFAULT_ARCHES and MODES | 232 # - default (no target specified): build all DEFAULT_ARCHES and MODES |
233 # - "check": build all targets and run all tests | 233 # - "check": build all targets and run all tests |
234 # - "<arch>.clean" for any <arch> in ARCHES | 234 # - "<arch>.clean" for any <arch> in ARCHES |
235 # - "clean": clean all ARCHES | 235 # - "clean": clean all ARCHES |
236 | 236 |
237 # ----------------- internal stuff ------------------------ | 237 # ----------------- internal stuff ------------------------ |
238 | 238 |
239 # Architectures and modes to be compiled. Consider these to be internal | 239 # Architectures and modes to be compiled. Consider these to be internal |
240 # variables, don't override them (use the targets instead). | 240 # variables, don't override them (use the targets instead). |
241 ARCHES = ia32 x64 x32 arm arm64 mips mipsel mips64 mips64el x87 ppc ppc64 | 241 ARCHES = ia32 x64 x32 arm arm64 mips mipsel mips64 mips64el x87 ppc ppc64 \ |
| 242 » » s390 s390x |
242 DEFAULT_ARCHES = ia32 x64 arm | 243 DEFAULT_ARCHES = ia32 x64 arm |
243 MODES = release debug optdebug | 244 MODES = release debug optdebug |
244 DEFAULT_MODES = release debug | 245 DEFAULT_MODES = release debug |
245 ANDROID_ARCHES = android_ia32 android_x64 android_arm android_arm64 \ | 246 ANDROID_ARCHES = android_ia32 android_x64 android_arm android_arm64 \ |
246 android_mipsel android_x87 | 247 android_mipsel android_x87 |
247 NACL_ARCHES = nacl_ia32 nacl_x64 | 248 NACL_ARCHES = nacl_ia32 nacl_x64 |
248 | 249 |
249 # List of files that trigger Makefile regeneration: | 250 # List of files that trigger Makefile regeneration: |
250 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ | 251 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ |
251 build/shim_headers.gypi build/features.gypi build/standalone.gypi \ | 252 build/shim_headers.gypi build/features.gypi build/standalone.gypi \ |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 # We need to manually set the stack limit here, to work around bugs in | 491 # We need to manually set the stack limit here, to work around bugs in |
491 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. | 492 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. |
492 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) | 493 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) |
493 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' | 494 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' |
494 | 495 |
495 gtags.clean: | 496 gtags.clean: |
496 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS | 497 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS |
497 | 498 |
498 dependencies builddeps: | 499 dependencies builddeps: |
499 $(error Use 'gclient sync' instead) | 500 $(error Use 'gclient sync' instead) |
OLD | NEW |