Home
last modified time | relevance | path

Searched refs:targets (Results 1 – 25 of 60) sorted by relevance

123

/ndk/sources/host-tools/make-3.81/
Drule.c91 while (rule->targets[ntargets] != 0) in count_implicit_rule_limits()
298 for (i = 0; rule->targets[i] != 0; ++i) in new_pattern_rule()
300 for (j = 0; r->targets[j] != 0; ++j) in new_pattern_rule()
301 if (!streq (rule->targets[i], r->targets[j])) in new_pattern_rule()
303 if (r->targets[j] == 0) in new_pattern_rule()
367 r->targets = (char **) xmalloc (2 * sizeof (char *)); in install_pattern_rule()
371 r->targets[1] = 0; in install_pattern_rule()
378 r->targets[0] = savestring (p->target, r->lens[0]); in install_pattern_rule()
379 r->suffixes[0] = find_percent (r->targets[0]); in install_pattern_rule()
416 for (i = 0; rule->targets[i] != 0; ++i) in freerule()
[all …]
Dimplicit.c323 for (i = 0; rule->targets[i] != 0; ++i) in pattern_search()
325 char *target = rule->targets[i]; in pattern_search()
421 for (j = 0; tryrules[i]->targets[j] != 0; ++j) in pattern_search()
422 if (tryrules[i]->targets[j][1] == '\0') in pattern_search()
424 if (tryrules[i]->targets[j] != 0) in pattern_search()
467 + (rule->suffixes[matches[i]] - rule->targets[matches[i]]) - 1; in pattern_search()
799 file->name = rule->targets[matches[foundrule]]; in pattern_search()
937 struct file *f = lookup_file (rule->targets[matches[foundrule]]); in pattern_search()
945 if (rule->targets[1] != 0) in pattern_search()
946 for (i = 0; rule->targets[i] != 0; ++i) in pattern_search()
[all …]
Drule.h24 char **targets; /* Targets of the rule. */ member
56 extern void create_pattern_rule PARAMS ((char **targets,
Dread.c1878 char **targets = 0, **target_percents = 0; in record_files() local
1928 if (targets == 0) in record_files()
1931 targets = (char **) xmalloc (5 * sizeof (char *)); in record_files()
1938 targets = (char **) xrealloc ((char *) targets, in record_files()
1944 targets[target_idx] = name; in record_files()
2123 targets[target_idx] = 0; in record_files()
2127 create_pattern_rule (targets, target_percents, two_colon, deps, cmds, 1); in record_files()
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dpatternrules49 # as targets (Savannah bug #12202).
99 # TEST #4: make sure precious flag is set properly for targets
119 # TEST #5: make sure targets of a macthed implicit pattern rule never
Dmult_targets2 ."rule with multiple targets is equivalent to writing \n"
6 $details = "A makefile is created with one rule and two targets. Make \n"
Ddouble_colon8 - Different prerequisites for targets: only out-of-date
10 - Double-colon targets that aren't the goal target.
13 targets should always be built serially.";
Dmult_rules14 another dependency to the targets.";
Dstatipattrules5 The makefile created in this test has three targets. The
/ndk/sources/host-tools/make-3.81/tests/
DChangeLog81 scripts/targets/FORCE, scripts/targets/PHONY,
82 scripts/targets/SILENT: Use the default setting for
246 * scripts/targets/SECONDARY: Add a test for Savannah bug #12331.
314 * scripts/functions/eval: Check that eval of targets within
436 * scripts/targets/SECONDARY: Test the "global" .SECONDARY (with
463 * scripts/options/dash-t: Add a test for handling -t on targets
479 characters in targets and prerequisites.
490 double-colon targets.
510 * scripts/targets/INTERMEDIATE: Ditto.
511 * scripts/targets/SECONDARY: Ditto.
[all …]
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Denable.good1 targets
Denable.inp1 --enable-targets=sparc-sun-sunos4.1.3,srec
/ndk/sources/host-tools/make-3.81/tests/scripts/options/
Ddash-k72 # TEST 1: Make sure that top-level targets that depend on targets that
Ddash-n35 # We consider the actual updated timestamp of targets with all
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/
DMAKECMDGOALS6 We construct a makefile with various targets, all of which print out
/ndk/build/core/
Dadd-application.mk100 $(call ndk_log,Application $(_app) targets unknown platform '$(_bad_platform)')
123 $(call __ndk_info,Application $(_app) targets unknown ABI '$(_bad_abis)')
Dsetup-app.mk61 $(call __ndk_info,NDK Application '$(_app)' targets unknown ABI(s): $(_bad_abis))
/ndk/build/tools/toolchain-patches/llvm/
D0006-Define-__ANDROID__-macro-on-androideabi-targets.patch4 Subject: [PATCH] Define __ANDROID__ macro on -androideabi targets.
/ndk/build/tools/
Dbuild-llvm.sh132 --enable-targets=arm,mips,x86 \
/ndk/sources/host-tools/make-3.81/doc/
Dmake.texi158 or prerequisites to mark other targets
163 * Multiple Targets:: When to make use of several targets in a rule.
165 * Static Pattern:: Static pattern rules apply to multiple targets
244 to a group of targets that match a pattern.
317 * Archive Members:: Archive members as targets.
318 * Archive Update:: The implicit rule for archive member targets.
506 @cindex targets, introduction to
519 program; examples of targets are executable or object files. A target
539 which are the targets of the particular rule. @code{make} carries out
613 In the example makefile, the targets include the executable file
[all …]
Dmake.info-1132 or prerequisites to mark other targets
137 * Multiple Targets:: When to make use of several targets in a rule.
139 * Static Pattern:: Static pattern rules apply to multiple targets
218 to a group of targets that match a pattern.
291 * Archive Members:: Archive members as targets.
292 * Archive Update:: The implicit rule for archive member targets.
465 program; examples of targets are executable or object files. A target
484 are the targets of the particular rule. `make' carries out the
546 In the example makefile, the targets include the executable file
575 called "phony targets". *Note Phony Targets::, for information about
[all …]
Dmake.info-2110 and commands. If a pattern rule has multiple targets, `make' knows that
111 the rule's commands are responsible for making all of the targets. The
112 commands are executed only once to make all the targets. When searching
117 are run, the other targets are marked as having been updated themselves.
156 This pattern rule has two targets:
204 pattern rule that has multiple targets (*note Introduction to
304 targets of the form `ARCHIVE(MEMBER)' and is useful only when
474 commands are used for all targets and prerequisites that have no
487 You can instead define commands to be used for targets for which
490 commands are used for all prerequisites which do not appear as targets
[all …]
/ndk/sources/cxx-stl/stlport/src/
Dstlport.rc9 /* On some evc3/evc4 targets the windows.h doesn't include winver.h or doesn't
/ndk/sources/host-tools/make-3.81/config/
DChangeLog3 * dospaths.m4: Add MSYS to the list of targets allowing DOS-style
/ndk/build/tools/toolchain-patches/gcc/
D0004-Enable-x86-gcc-defaults.patch36 # Enable compilation for Android by default for *android* targets.
163 # Enable compilation for Android by default for *android* targets.

123