/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3dapi/ |
Makefile | 3 include ../Makefile.inc
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3dapi/ |
Makefile | 3 include ../Makefile.inc
|
/external/chromium_org/third_party/mesa/src/src/glsl/tests/ |
.gitignore | 0 Makefile
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/ |
Makefile | 3 include ../Makefile.inc
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/ |
Makefile | 3 include ../Makefile.inc
|
/external/mesa3d/src/glsl/tests/ |
.gitignore | 0 Makefile
|
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/ |
MFILE_LIST | 7 open(MAKEFILE,"> $makefile"); 8 print MAKEFILE <<EOF; 18 close(MAKEFILE); 21 open(MAKEFILE,"> $makefile2"); 22 print MAKEFILE "m2 := \$(MAKEFILE_LIST)\n"; 23 close(MAKEFILE); 26 &run_make_with_options($makefile, "", &get_logfile); 27 $answer = "$makefile\n$makefile $makefile2\n$makefile $makefile2\n" [all...] |
MAKEFILES | 8 open(MAKEFILE,"> $makefile"); 9 print MAKEFILE 'all: ; @echo DEFAULT RULE: M2=$(M2) M3=$(M3)', "\n"; 10 close(MAKEFILE); 13 open(MAKEFILE,"> $makefile2"); 14 print MAKEFILE <<EOF; 16 NDEF: ; \@echo RULE FROM MAKEFILE 2 18 close(MAKEFILE); 21 open(MAKEFILE,"> $makefile3"); 22 print MAKEFILE <<EOF [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/ |
Makefile.inc | 1 EXTRA_DIST += modules/dbgfmts/dwarf2/tests/gen64/Makefile.inc 2 EXTRA_DIST += modules/dbgfmts/dwarf2/tests/pass32/Makefile.inc 3 EXTRA_DIST += modules/dbgfmts/dwarf2/tests/pass64/Makefile.inc 4 EXTRA_DIST += modules/dbgfmts/dwarf2/tests/passwin64/Makefile.inc 5 include modules/dbgfmts/dwarf2/tests/gen64/Makefile.inc 6 include modules/dbgfmts/dwarf2/tests/pass32/Makefile.inc 7 include modules/dbgfmts/dwarf2/tests/pass64/Makefile.inc 8 include modules/dbgfmts/dwarf2/tests/passwin64/Makefile.inc
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/ |
Makefile.inc | 1 EXTRA_DIST += modules/objfmts/macho/tests/gas32/Makefile.inc 2 EXTRA_DIST += modules/objfmts/macho/tests/gas64/Makefile.inc 3 EXTRA_DIST += modules/objfmts/macho/tests/nasm32/Makefile.inc 4 EXTRA_DIST += modules/objfmts/macho/tests/nasm64/Makefile.inc 6 include modules/objfmts/macho/tests/gas32/Makefile.inc 7 include modules/objfmts/macho/tests/gas64/Makefile.inc 8 include modules/objfmts/macho/tests/nasm32/Makefile.inc 9 include modules/objfmts/macho/tests/nasm64/Makefile.inc
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/ |
Makefile.inc | 1 EXTRA_DIST += modules/parsers/tasm/tests/Makefile.inc 3 include modules/parsers/tasm/tests/Makefile.inc
|
/external/qemu/distrib/sdl-1.2.15/ |
Watcom-OS2.zip | |
/hardware/ti/omap3/omx/system/src/openmax_il/common/ |
content.pkg | 1 system\src\openmax_il\common\Makefile 2 system\src\openmax_il\common\inc\Makefile
|
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/ |
Makefile.inc | 1 EXTRA_DIST += frontends/yasm/Makefile.inc 2 EXTRA_DIST += frontends/tasm/Makefile.inc 3 EXTRA_DIST += frontends/vsyasm/Makefile.inc 5 include frontends/yasm/Makefile.inc 6 include frontends/tasm/Makefile.inc 7 include frontends/vsyasm/Makefile.inc
|
/external/dropbear/libtomcrypt/ |
updatemakes.sh | 5 perl filter.pl makefile tmplist 6 mv -f tmp.delme makefile 8 perl filter.pl makefile.icc tmplist 9 mv -f tmp.delme makefile.icc 11 perl filter.pl makefile.shared tmplist 12 mv -f tmp.delme makefile.shared 14 perl filter.pl makefile.unix tmplist 15 mv -f tmp.delme makefile.unix 17 perl filter.pl makefile.msvc tmplist 18 sed -e 's/\.o /.obj /g' < tmp.delme > makefile.msv [all...] |
/external/libpng/scripts/ |
README.txt | 4 makefile.linux => Linux/ELF makefile 6 makefile.gcc => Generic makefile (gcc, creates static libpng.a) 7 makefile.knr => Archaic UNIX Makefile that converts files with 10 makefile.acorn => Acorn makefile 11 makefile.aix => AIX/gcc makefile [all...] |
/ndk/sources/host-tools/make-3.81/tests/scripts/targets/ |
DEFAULT | 1 $description = "The following test creates a makefile to override part\n" 2 ."of one Makefile with Another Makefile with the .DEFAULT\n" 7 ."in the containing makefile, make should look in another makefile\n" 8 ."This test gives this makefile the target bar which is not \n" 9 ."defined here but passes the target bar on to another makefile\n" 14 open(MAKEFILE,"> $makefile"); 16 # The Contents of the MAKEFILE .. [all...] |
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
quoting | 3 $description = "The following test creates a makefile to test using \n" . 6 open(MAKEFILE,"> $makefile"); 8 # The Contents of the MAKEFILE ... 10 print MAKEFILE <<'EOM'; 17 # END of Contents of MAKEFILE 19 close(MAKEFILE); 22 &run_make_with_options($makefile,"",&get_logfile); 25 # Create the answer to what should be produced by this Makefile
|
varnesting | 1 $description = "The following test creates a makefile to ..."; 5 open(MAKEFILE,"> $makefile"); 7 # The Contents of the MAKEFILE ... 9 print MAKEFILE "x = variable1\n" 17 # END of Contents of MAKEFILE 19 close(MAKEFILE); 21 &run_make_with_options($makefile,"",&get_logfile); 23 # Create the answer to what should be produced by this Makefile
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/ |
Makefile.inc | 1 EXTRA_DIST += modules/objfmts/dbg/Makefile.inc 2 EXTRA_DIST += modules/objfmts/bin/Makefile.inc 3 EXTRA_DIST += modules/objfmts/elf/Makefile.inc 4 #!EXTRA_DIST += modules/objfmts/omf/Makefile.inc 5 EXTRA_DIST += modules/objfmts/coff/Makefile.inc 6 EXTRA_DIST += modules/objfmts/macho/Makefile.inc 7 EXTRA_DIST += modules/objfmts/rdf/Makefile.inc 8 EXTRA_DIST += modules/objfmts/win32/Makefile.inc 9 EXTRA_DIST += modules/objfmts/win64/Makefile.inc 10 EXTRA_DIST += modules/objfmts/xdf/Makefile.in [all...] |
/external/srec/make/asr/ |
Makefile.common | 2 # FILE: Makefile.common 4 # Common settings, independent of configuration (independent of Makefile.config). 5 # This is included by Makefile.defs
|
/ndk/sources/host-tools/make-3.81/tests/scripts/options/ |
dash-f | 14 open(MAKEFILE,"> $makefile"); 16 # The Contents of the MAKEFILE ... 18 print MAKEFILE "all: \n"; 19 print MAKEFILE "\t\@echo This is the output from the original makefile\n"; 21 # END of Contents of MAKEFILE 23 close(MAKEFILE); 25 # Create a second makefile 26 open(MAKEFILE,"> $makefile2") [all...] |
dash-e | 3 $description = "The following test creates a makefile to ..."; 9 open(MAKEFILE,"> $makefile"); 11 print MAKEFILE <<'EOF'; 16 close(MAKEFILE); 18 &run_make_with_options($makefile, '-e' ,&get_logfile);
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
.gitignore | 0 Makefile 2 Makefile.in
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/ |
Makefile.inc | 1 EXTRA_DIST += modules/dbgfmts/codeview/Makefile.inc 2 EXTRA_DIST += modules/dbgfmts/dwarf2/Makefile.inc 3 EXTRA_DIST += modules/dbgfmts/null/Makefile.inc 4 EXTRA_DIST += modules/dbgfmts/stabs/Makefile.inc 6 include modules/dbgfmts/codeview/Makefile.inc 7 include modules/dbgfmts/dwarf2/Makefile.inc 8 include modules/dbgfmts/null/Makefile.inc 9 include modules/dbgfmts/stabs/Makefile.inc
|