/frameworks/base/core/tests/overlaytests/ |
Android.mk | 1 # Dummy makefile to halt recursive directory traversal.
|
/hardware/ti/omap3/omx/system/src/openmax_il/lcml/ |
content.pkg | 1 system\src\openmax_il\lcml\Makefile 2 system\src\openmax_il\lcml\docs\Makefile 5 system\src\openmax_il\lcml\inc\Makefile 10 system\src\openmax_il\lcml\src\Makefile
|
/external/qemu/ |
Android.mk | 3 # standard QEMU Makefile 7 include $(LOCAL_PATH)/Makefile.android 9 include Makefile.qemu
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
comments | 1 $description = "The following test creates a makefile to test comments\n" 5 $details = "To test comments within a makefile, a semi-colon was placed \n" 13 open(MAKEFILE,"> $makefile"); 15 # The Contents of the MAKEFILE ... 17 print MAKEFILE <<\EOF; 21 @echo There should be no errors for this makefile. 24 # END of Contents of MAKEFILE 26 close(MAKEFILE); 28 &run_make_with_options($makefile,"",&get_logfile) [all...] |
mult_targets | 1 $description = "The following test creates a makefile to test that a \n " 6 $details = "A makefile is created with one rule and two targets. Make \n" 13 open(MAKEFILE,"> $makefile"); 15 # The Contents of the MAKEFILE ... 17 print MAKEFILE "bigoutput littleoutput: test.h\n"; 18 print MAKEFILE "\t\@echo I am \$(subst output,,\$@)\n"; 20 # END of Contents of MAKEFILE 22 close(MAKEFILE); 26 &run_make_with_options($makefile,"bigoutput",&get_logfile) [all...] |
vpath | 1 $description = "The following test creates a makefile to test the \n" 15 open(MAKEFILE,"> $makefile"); 17 # The Contents of the MAKEFILE ... 19 print MAKEFILE "vpath %.c foo\n"; 20 print MAKEFILE "vpath %.c $workdir\n"; 21 print MAKEFILE "vpath %.h $workdir\n"; 22 print MAKEFILE "objects = main.o kbd.o commands.o display.o insert.o\n"; 23 print MAKEFILE "edit: \$(objects)\n"; 24 print MAKEFILE "\t\@echo cc -o \$@ \$^\n" [all...] |
mult_rules | 2 The following test creates a makefile to test the presence 8 The makefile created in this test contains two hardcoded rules 16 open(MAKEFILE,"> $makefile"); 18 # The Contents of the MAKEFILE ... 20 print MAKEFILE <<EOF; 29 # END of Contents of MAKEFILE 31 close(MAKEFILE); 44 &run_make_with_options($makefile, 49 # Create the answer to what should be produced by this Makefile [all...] |
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
error | 4 The following test creates a makefile to test the error function."; 8 open(MAKEFILE,"> $makefile"); 10 print MAKEFILE 'err = $(error Error found!) 34 close(MAKEFILE); 38 &run_make_with_options($makefile, "ERROR1=yes", &get_logfile, 512); 39 $answer = "$makefile:4: *** error is yes. Stop.\n"; 44 &run_make_with_options($makefile, "ERROR2=no", &get_logfile, 512); 45 $answer = "$makefile:8: *** error is no. Stop.\n"; 50 &run_make_with_options($makefile, "ERROR3=maybe", &get_logfile, 512) [all...] |
addprefix | 1 $description = "The following test creates a makefile to test the addprefix " 6 # IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET 7 # THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF 12 open(MAKEFILE,"> $makefile"); 14 # The Contents of the MAKEFILE ... 16 print MAKEFILE "string := \$(addprefix src${pathsep},a.b.z.foo hacks) \n" 20 # END of Contents of MAKEFILE 22 close(MAKEFILE); 24 &run_make_with_options($makefile,"",&get_logfile,0) [all...] |
dir | 1 $description = "The following test creates a makefile to test the dir " 6 # IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET 7 # THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF 12 open(MAKEFILE,"> $makefile"); 14 # The Contents of the MAKEFILE ... 16 print MAKEFILE "string := \$(dir src${pathsep}foo.c hacks) \n" 20 # END of Contents of MAKEFILE 22 close(MAKEFILE); 24 &run_make_with_options($makefile,"",&get_logfile,0) [all...] |
findstring | 1 $description = "The following test creates a makefile to test the findstring " 6 # IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET 7 # THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF 12 open(MAKEFILE,"> $makefile"); 14 # The Contents of the MAKEFILE ... 16 print MAKEFILE "string := \$(findstring port, reporter)\n" 20 # END of Contents of MAKEFILE 22 close(MAKEFILE); 24 &run_make_with_options($makefile, [all...] |
join | 1 $description = "The following test creates a makefile to test the join " 6 # IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET 7 # THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF 12 open(MAKEFILE,"> $makefile"); 14 # The Contents of the MAKEFILE ... 16 print MAKEFILE "string := \$(join a b c,foo hacks .pl1) \n" 20 # END of Contents of MAKEFILE 22 close(MAKEFILE); 24 &run_make_with_options($makefile,"",&get_logfile,0) [all...] |
notdir | 1 $description = "The following test creates a makefile to test the notdir " 6 # IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET 7 # THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF 12 open(MAKEFILE,"> $makefile"); 14 # The Contents of the MAKEFILE ... 16 print MAKEFILE "string := \$(notdir ${pathsep}src${pathsep}foo.c hacks) \n" 20 # END of Contents of MAKEFILE 22 close(MAKEFILE); 24 &run_make_with_options($makefile,"",&get_logfile,0) [all...] |
addsuffix | 7 open(MAKEFILE,"> $makefile"); 9 # The Contents of the MAKEFILE ... 11 print MAKEFILE <<EOMAKE; 18 close(MAKEFILE); 23 &run_make_with_options($makefile, "", &get_logfile); 30 &run_make_with_options($makefile, "two", &get_logfile);
|
value | 9 open(MAKEFILE,"> $makefile"); 11 print MAKEFILE <<'EOF'; 20 close(MAKEFILE); 22 &run_make_with_options($makefile, "", &get_logfile); 24 # Create the answer to what should be produced by this Makefile
|
/external/openfst/ |
configure.ac | 11 Makefile 12 src/Makefile 13 src/include/Makefile 14 src/lib/Makefile 15 src/bin/Makefile 16 src/test/Makefile 17 src/extensions/Makefile 18 src/extensions/compact/Makefile 19 src/extensions/const/Makefile 20 src/extensions/far/Makefile [all...] |
/ndk/sources/host-tools/make-3.81/tests/scripts/options/ |
dash-n | 6 open(MAKEFILE, "> $makefile"); 8 # The Contents of the MAKEFILE ... 10 print MAKEFILE <<'EOMAKE'; 17 close(MAKEFILE); 23 &run_make_with_options($makefile, "", &get_logfile); 29 &run_make_with_options($makefile, "-Worig -n", &get_logfile); 40 open(MAKEFILE, "> $makefile2"); 42 print MAKEFILE <<'EOF'; 50 close(MAKEFILE); [all...] |
/external/llvm/projects/sample/lib/ |
Makefile | 1 ##===- projects/sample/lib/Makefile ------------------------*- Makefile -*-===## 13 include $(LEVEL)/Makefile.common
|
/external/llvm/projects/sample/tools/ |
Makefile | 1 ##===- projects/sample/tools/Makefile ----------------------*- Makefile -*-===## 13 include $(LEVEL)/Makefile.common
|
/external/antlr/antlr-3.4/runtime/Perl5/ |
MANIFEST.SKIP | 4 ^Makefile$
|
/external/chromium_org/third_party/WebKit/Source/core/ |
.gitignore | 1 *.Makefile
|
/external/chromium_org/third_party/libxml/patches/ |
win32-clobber-makefile | 6 makefile = ".\\Makefile.mingw"; 8 makefile = ".\\Makefile.bcb"; 9 -fso.CopyFile(makefile, ".\\Makefile", true); 10 +var new_makefile = ".\\Makefile"; 16 +fso.CopyFile(makefile, new_makefile, true); 17 WScript.Echo("Created Makefile.");
|
/external/chromium_org/third_party/mesa/src/src/egl/wayland/ |
.gitignore | 0 Makefile
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/ |
SConscript | 7 source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
SConscript | 7 source = env.ParseSourceList('Makefile.sources',
|