| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 # - "nacl" : cross-compile for Native Client (ia32 and x64) | 233 # - "nacl" : cross-compile for Native Client (ia32 and x64) |
| 234 # - default (no target specified): build all DEFAULT_ARCHES and MODES | 234 # - default (no target specified): build all DEFAULT_ARCHES and MODES |
| 235 # - "check": build all targets and run all tests | 235 # - "check": build all targets and run all tests |
| 236 # - "<arch>.clean" for any <arch> in ARCHES | 236 # - "<arch>.clean" for any <arch> in ARCHES |
| 237 # - "clean": clean all ARCHES | 237 # - "clean": clean all ARCHES |
| 238 | 238 |
| 239 # ----------------- internal stuff ------------------------ | 239 # ----------------- internal stuff ------------------------ |
| 240 | 240 |
| 241 # Architectures and modes to be compiled. Consider these to be internal | 241 # Architectures and modes to be compiled. Consider these to be internal |
| 242 # variables, don't override them (use the targets instead). | 242 # variables, don't override them (use the targets instead). |
| 243 ARCHES = ia32 x64 x32 arm arm64 mips mipsel mips64el x87 ppc ppc64 | 243 ARCHES = ia32 x64 x32 arm arm64 mips mipsel mips64 mips64el x87 ppc ppc64 |
| 244 DEFAULT_ARCHES = ia32 x64 arm | 244 DEFAULT_ARCHES = ia32 x64 arm |
| 245 MODES = release debug optdebug | 245 MODES = release debug optdebug |
| 246 DEFAULT_MODES = release debug | 246 DEFAULT_MODES = release debug |
| 247 ANDROID_ARCHES = android_ia32 android_x64 android_arm android_arm64 \ | 247 ANDROID_ARCHES = android_ia32 android_x64 android_arm android_arm64 \ |
| 248 android_mipsel android_x87 | 248 android_mipsel android_x87 |
| 249 NACL_ARCHES = nacl_ia32 nacl_x64 | 249 NACL_ARCHES = nacl_ia32 nacl_x64 |
| 250 | 250 |
| 251 # List of files that trigger Makefile regeneration: | 251 # List of files that trigger Makefile regeneration: |
| 252 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ | 252 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ |
| 253 build/shim_headers.gypi build/features.gypi build/standalone.gypi \ | 253 build/shim_headers.gypi build/features.gypi build/standalone.gypi \ |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 # We need to manually set the stack limit here, to work around bugs in | 492 # We need to manually set the stack limit here, to work around bugs in |
| 493 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. | 493 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. |
| 494 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) | 494 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) |
| 495 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' | 495 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' |
| 496 | 496 |
| 497 gtags.clean: | 497 gtags.clean: |
| 498 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS | 498 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS |
| 499 | 499 |
| 500 dependencies builddeps: | 500 dependencies builddeps: |
| 501 $(error Use 'gclient sync' instead) | 501 $(error Use 'gclient sync' instead) |
| OLD | NEW |