Home
last modified time | relevance | path

Searched refs:all (Results 1 – 25 of 507) sorted by relevance

12345678910>>...21

/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dstatipattrules75 all.foo.bar: %.foo.bar: %.one
77 all.foo.bar: %.bar: %.two
79 all.foo.bar:
86 'all.foo
87 all.one all.foo.two');
97 all.foo.bar: %.foo.bar: %.one $$*-one
99 all.foo.bar: %.bar: %.two $$*-two
101 all.foo.bar:
108 'all.foo
109 all.one all-one all.foo.two all.foo-two');
Dinclude20 all: ; \@echo There should be no errors for this makefile.
42 &run_make_with_options($makefile, "all", &get_logfile);
85 .PHONY: all
86 all: ; @:
100 .PHONY: all
101 all:; @:
114 .PHONY: all
115 all:; @:
Dparallelism14 make is running all of these commands in parallel.";
29 all : def_1 def_2 def_3
39 all: 1 2; \@echo success
52 recurse: ; \@\$(MAKE) --no-print-directory -f #MAKEFILE# INC=yes all
53 all: 1 2; \@echo success
78 .PHONY: all first second
79 all: first second
89 .PHONY: all fail.1 fail.2 fail.3 ok
90 all: fail.1 ok fail.2 fail.3
114 .PHONY: all
[all …]
Drecursion8 all:
47 recur: all ; @$(MAKE) --no-print-directory -f #MAKEFILE# a=AA all
48 all: ; @echo "MAKEOVERRIDES = $(MAKEOVERRIDES)"
Dpatternrules19 .PHONY: all
21 all: case.1 case.2 case.3
54 .PHONY: all foo.in
56 all: $(TARGETS)
123 .PHONY: all
124 all: foo.c foo.o
Dconditionals13 all:
76 all:; @echo DEF=$(DEF) DEF2=$(DEF2) DEF3=$(DEF3)',
81 # Test all the different "else if..." constructs
107 all: ; @echo $(result)',
139 .PHONY: all
140 all: ; @:',
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/
DSHELL9 $mshell = `echo 'all:;\@echo \$(SHELL)' | $make_path -f-`;
17 run_make_test('all:;@echo "$(SHELL)"', '', $mshell);
22 # all when $(SHELL) is perl :-/. So, we just add an extra initial /./ which
28 all:;@echo "$(SHELL) $$SHELL"
37 all:;@echo "$(SHELL) $$SHELL"
46 run_make_test("all: SHELL := /./$mshell\n".'
47 all:;@echo "$(SHELL) $$SHELL"
52 run_make_test("all: export SHELL := /./$mshell\n".'
53 all:;@echo "$(SHELL) $$SHELL"
DMAKE_RESTARTS8 all: ; @:
22 all: ; @:
41 @$(MAKE) -f #MAKEFILE# all
42 all:
43 @echo all MAKE_RESTARTS=$$MAKE_RESTARTS
57 all MAKE_RESTARTS=
Dspecial17 all:
33 # all: foo
50 # $answer = "X1 =\nX2 = all\nLAST = all foo\n";
DMAKECMDGOALS6 We construct a makefile with various targets, all of which print out
11 .DEFAULT all:
28 "all",
31 $answer = "all\n";
DINCLUDE_DIRS20 .PHONY: all
21 all:;@:
38 .PHONY: all
39 all:;@:
Dflavors16 all: multi ; @echo $(foo)
84 # Clean up from "old style" testing. If all the above tests are converted to
98 # all: ; $(V)$(foo)
106 # all: ; $(foo)
122 all: ; @$(FOO)
140 all: ; $(FOO)
173 all: foo bar
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Dshell9 run_make_test('.PHONY: all
10 all: ; @echo $(shell echo hi)
19 .PHONY: all
20 all: ; @echo $$HI
Drealpath51 .PHONY: all
52 all: ; @:
74 .PHONY: all
75 all: ; @:',
Deval13 all:: ; @echo $AA
48 all: ; @echo A = $(A) B = $(B)
69 all:: ; @echo it
72 all:: ; @echo worked
102 all: ; @echo '[$(a)]'
124 all: ; @echo "OK"
137 # If we ever convert all the above to run_make_test() we can remove this line.
144 all: ; @echo hello \
152 all: ; @echo '."'".'he\llo'."'".'
Dcall4 $details = "Try various uses of call and ensure they all give the correct
44 all: ; @echo '$(call reverse,bar,foo)'; \
80 all = $1 $2 $3 $4 $5 $6 $7 $8 $9
82 level1 = $(call all,$1,$2,$3,$4,$5)
86 all:
87 @echo $(call all,1,2,3,4,5,6,7,8,9,10,11)
Dforeach27 all: auto for2
40 .PHONY: all target
41 all: target
63 all: ; @echo $y',
72 all: ; @echo $y',
Dsubstitution14 all:;@echo $(bar); echo $(bar2); echo $(bar3)',
23 run_make_test('all:;@echo $(patsubst Foo,Repl,FooFoo)', '', 'FooFoo');
30 all:;@echo $(A:fooBARfoo=REPL)', '', 'fooBARREPL');
/ndk/sources/host-tools/make-3.81/tests/scripts/options/
Ddash-B16 .PHONY: all
17 all: foo
25 run_make_test(undef, '', "#MAKE#: Nothing to be done for `all'.");
31 run_make_test(undef, '', "#MAKE#: Nothing to be done for `all'.");
42 all: ; @:
59 all: blah.x ; @echo $@
69 all');
Ddash-f4 ."makefiles and specifies all of them with the -f option \n"
7 ."makefiles one at a time. Finally, it calls all three \n"
18 print MAKEFILE "all: \n";
66 # that all rules are executed in the proper order
72 "-f $makefile2 -f $makefile3 TWO all THREE",
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/
Dall.pass.cpp20 assert(v.all() == (N == 0)); in test_all()
22 assert(v.all() == true); in test_all()
26 assert(v.all() == false); in test_all()
/ndk/sources/host-tools/make-3.81/tests/scripts/misc/
Dgeneral312 .PHONY: all a1 a2 a3 a4
13 all: a1 a2 a3 a4
29 '', "#MAKE#: Nothing to be done for `all'.");
39 print MAKEFILE "all:;\@echo FOO = \$(FOO)\nFOO = foo";
52 all: ; @:
63 all:
92 all:
129 all:
158 all:
196 all:
[all …]
/ndk/build/core/
Dcheck-cygwin-make.mk25 .PHONY: all
26 all:
Dsetup-app.mk40 all: ndk-app-$(_app)
60 ifeq ($(NDK_APP_ABI),all)
77 ifneq ($(filter %all,$(_unknown_abis)),)
78 _unknown_abis_prefix := $(_unknown_abis:%all=%)
/ndk/tests/abcc/
DAndroid.mk11 LOCAL_SRC_FILES := $(call all-subdir-java-files)
22 include $(call all-makefiles-under,$(LOCAL_PATH))

12345678910>>...21