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