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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 # - "clean": clean all ARCHES | 227 # - "clean": clean all ARCHES |
228 | 228 |
229 # ----------------- internal stuff ------------------------ | 229 # ----------------- internal stuff ------------------------ |
230 | 230 |
231 # Architectures and modes to be compiled. Consider these to be internal | 231 # Architectures and modes to be compiled. Consider these to be internal |
232 # variables, don't override them (use the targets instead). | 232 # variables, don't override them (use the targets instead). |
233 ARCHES = ia32 x64 x32 arm arm64 mips mipsel mips64el x87 ppc ppc64 | 233 ARCHES = ia32 x64 x32 arm arm64 mips mipsel mips64el x87 ppc ppc64 |
234 DEFAULT_ARCHES = ia32 x64 arm | 234 DEFAULT_ARCHES = ia32 x64 arm |
235 MODES = release debug optdebug | 235 MODES = release debug optdebug |
236 DEFAULT_MODES = release debug | 236 DEFAULT_MODES = release debug |
237 ANDROID_ARCHES = android_ia32 android_arm android_arm64 android_mipsel android_x
87 | 237 ANDROID_ARCHES = android_ia32 android_x64 android_arm android_arm64 \ |
| 238 » » android_mipsel android_x87 |
238 NACL_ARCHES = nacl_ia32 nacl_x64 | 239 NACL_ARCHES = nacl_ia32 nacl_x64 |
239 | 240 |
240 # List of files that trigger Makefile regeneration: | 241 # List of files that trigger Makefile regeneration: |
241 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ | 242 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ |
242 build/shim_headers.gypi build/features.gypi build/standalone.gypi \ | 243 build/shim_headers.gypi build/features.gypi build/standalone.gypi \ |
243 build/toolchain.gypi build/all.gyp build/mac/asan.gyp \ | 244 build/toolchain.gypi build/all.gyp build/mac/asan.gyp \ |
244 build/android.gypi test/cctest/cctest.gyp \ | 245 build/android.gypi test/cctest/cctest.gyp \ |
245 test/unittests/unittests.gyp tools/gyp/v8.gyp \ | 246 test/unittests/unittests.gyp tools/gyp/v8.gyp \ |
246 tools/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \ | 247 tools/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \ |
247 buildtools/third_party/libc++abi/libc++abi.gyp \ | 248 buildtools/third_party/libc++abi/libc++abi.gyp \ |
(...skipping 242 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 |