/third_party/skia/third_party/externals/libpng/scripts/ |
D | README.txt | 5 makefile.linux => Linux/ELF makefile 7 makefile.linux-opt=> Linux/ELF makefile with hardware optimizations on 9 makefile.gcc => Generic makefile (gcc, creates static libpng.a) 10 makefile.acorn => Acorn makefile 11 makefile.aix => AIX/gcc makefile 12 makefile.amiga => Amiga makefile 13 makefile.atari => Atari makefile 14 makefile.bc32 => 32-bit Borland C++ (all modules compiled in C mode) 15 makefile.beos => BeOS makefile 16 makefile.cegcc => minge32ce for Windows CE makefile [all …]
|
D | travis.sh | 33 make -f scripts/makefile.$CC $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS 34 [[ $DISABLE_TESTS ]] || make -f scripts/makefile.$CC $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS test 35 make -f scripts/makefile.$CC $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS clean
|
/third_party/libpng/scripts/ |
D | README.txt | 5 makefile.linux => Linux/ELF makefile 7 makefile.linux-opt=> Linux/ELF makefile with hardware optimizations on 9 makefile.gcc => Generic makefile (gcc, creates static libpng.a) 10 makefile.acorn => Acorn makefile 11 makefile.aix => AIX/gcc makefile 12 makefile.amiga => Amiga makefile 13 makefile.atari => Atari makefile 14 makefile.bc32 => 32-bit Borland C++ (all modules compiled in C mode) 15 makefile.beos => BeOS makefile 16 makefile.cegcc => minge32ce for Windows CE makefile [all …]
|
/third_party/flutter/skia/third_party/externals/libpng/scripts/ |
D | README.txt | 5 makefile.linux => Linux/ELF makefile 7 makefile.linux-opt=> Linux/ELF makefile with hardware optimizations on 9 makefile.gcc => Generic makefile (gcc, creates static libpng.a) 10 makefile.acorn => Acorn makefile 11 makefile.aix => AIX/gcc makefile 12 makefile.amiga => Amiga makefile 13 makefile.atari => Atari makefile 14 makefile.bc32 => 32-bit Borland C++ (all modules compiled in C mode) 15 makefile.beos => BeOS makefile 16 makefile.cegcc => minge32ce for Windows CE makefile [all …]
|
D | travis.sh | 33 make -f scripts/makefile.$CC $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS 34 [[ $DISABLE_TESTS ]] || make -f scripts/makefile.$CC $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS test 35 make -f scripts/makefile.$CC $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS clean
|
/third_party/ltp/testcases/open_posix_testsuite/scripts/ |
D | generate-makefiles.sh | 43 local makefile=$1 97 if [ ! -f "$makefile.1" ]; then 99 cat > "$makefile.1" <<EOF 128 cat >> "$makefile.1" <<EOF 134 cat >> "$makefile.1" <<EOF 140 cat >> "$makefile.1" <<EOF 147 echo "" >> "$makefile.1" 152 cat >> "$makefile.2" <<EOF 156 cat >> "$makefile.2" <<EOF 169 if [ ! -f "$makefile.3" ]; then [all …]
|
/third_party/boost/libs/graph/example/ |
D | Jamfile.v2 | 12 run accum-compile-times.cpp : $(TEST_DIR)/makefile-dependencies.dat $(TEST_DIR)/makefile-target-nam… 47 run cycle-file-dep.cpp : $(TEST_DIR)/makefile-dependencies.dat $(TEST_DIR)/makefile-target-names.da… 48 run cycle-file-dep2.cpp : $(TEST_DIR)/makefile-dependencies.dat $(TEST_DIR)/makefile-target-names.d… 51 run default-constructor.cpp : $(TEST_DIR)/makefile-dependencies.dat ; 52 run default-constructor2.cpp : $(TEST_DIR)/makefile-dependencies.dat ; 66 run edge-function.cpp : $(TEST_DIR)/makefile-dependencies.dat $(TEST_DIR)/makefile-target-names.dat… 67 run edge-iter-constructor.cpp : $(TEST_DIR)/makefile-dependencies.dat ; 118 run parallel-compile-time.cpp : $(TEST_DIR)/makefile-dependencies.dat $(TEST_DIR)/makefile-target-n… 121 run print-adjacent-vertices.cpp : $(TEST_DIR)/makefile-dependencies.dat $(TEST_DIR)/makefile-target… 122 run print-edges.cpp : $(TEST_DIR)/makefile-dependencies.dat $(TEST_DIR)/makefile-target-names.dat ; [all …]
|
/third_party/libxml2/bakefile/ |
D | Readme.txt | 6 Bakefile (http://bakefile.sourceforge.net) is used as makefile generator. 9 - makefile.vc for Microsoft NMAKE 10 - makefile.bcc for Borland MAKE 11 - makefile.wat for OpenWatcom MAKE 12 - makefile.gcc for MinGW MINGW32-MAKE 36 the makefile you want to use; at the beginning you should see a section which starts as: 42 here you can find all the options actually used by that makefile. 43 They can be customized when running the makefile writing something like: 48 or they can be permanently changed modifying the makefile.
|
/third_party/python/Lib/distutils/tests/ |
D | test_sysconfig.py | 21 self.makefile = None 24 if self.makefile is not None: 25 os.unlink(self.makefile) 174 self.makefile = TESTFN 175 fd = open(self.makefile, 'w') 181 d = sysconfig.parse_makefile(self.makefile) 186 self.makefile = TESTFN 187 fd = open(self.makefile, 'w') 193 d = sysconfig.parse_makefile(self.makefile)
|
/third_party/python/PCbuild/ |
D | prepare_ssl.py | 68 def copy_includes(makefile, suffix): argument 75 with open(makefile) as fin: 133 makefile = makefile_template.format(suffix) 135 os.unlink(makefile) 138 os.rename(generated_makefile, makefile) 139 copy_includes(makefile, suffix)
|
/third_party/ltp/scripts/ |
D | checkbashisms.pl | 84 my $makefile = 0; 153 init_hashes if !$makefile++; 154 $makefile = 1; 156 init_hashes if $makefile--; 157 $makefile = 0; 221 if (!$makefile && $cat_string eq '' && m/\\$/) { 235 if ($makefile) { 795 if ($makefile) {
|
/third_party/python/Lib/test/ |
D | test_sysconfig.py | 444 makefile = sysconfig.get_makefile_filename() 445 self.assertTrue(os.path.isfile(makefile), makefile) 449 with open(TESTFN, "w") as makefile: 450 print("var1=a$(VAR2)", file=makefile) 451 print("VAR2=b$(var3)", file=makefile) 452 print("var3=42", file=makefile) 453 print("var4=$/invalid", file=makefile) 454 print("var5=dollar$$5", file=makefile) 456 "-x86_64-linux-gnu", file=makefile)
|
/third_party/jerryscript/targets/particle/ |
D | Makefile.particle | 58 $(PARTICLE_BUILD_CONFIG) make -C$(PARTICLE_FIRMWARE) -f $(PARTICLE_FIRMWARE)/makefile 61 …$(PARTICLE_BUILD_CONFIG) make -C$(PARTICLE_FIRMWARE)/main -f $(PARTICLE_FIRMWARE)/main/makefile pr… 64 $(PARTICLE_BUILD_CONFIG) make -C$(PARTICLE_FIRMWARE) -f $(PARTICLE_FIRMWARE)/makefile clean
|
/third_party/libxml2/VxWorks/ |
D | README | 38 replacement makefile to work. 40 3. Run the replacement makefile. I wrote a new makefile that sets all the 46 This makefile creates a shared library that runs on VxWorks: (libxml2.so) 49 This makefile creates a kernel module that runs on VxWorks: (xml2.out)
|
/third_party/skia/third_party/externals/libwebp/tests/ |
D | README | 17 fuzzer/makefile.unix can then be used to compile the fuzzer targets: 19 $ make -C fuzzer -f makefile.unix
|
/third_party/libpng/contrib/pngminim/preader/ |
D | README | 3 The makefile builds a minimal read-only progressive decoder with 9 Edit makefile if required, to find your X library and include files,
|
/third_party/flutter/skia/third_party/externals/libpng/contrib/pngminim/preader/ |
D | README | 3 The makefile builds a minimal read-only progressive decoder with 9 Edit makefile if required, to find your X library and include files,
|
/third_party/skia/third_party/externals/libpng/contrib/pngminim/preader/ |
D | README | 3 The makefile builds a minimal read-only progressive decoder with 9 Edit makefile if required, to find your X library and include files,
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
D | xcode.py | 1082 makefile = open(makefile_path, "w") 1088 makefile.write("all: \\\n") 1105 makefile.write(" %s%s\n" % (concrete_output, eol)) 1113 makefile.write("\n") 1126 makefile.write("%s%s \\\n" % (bol, concrete_output)) 1135 makefile.write(" : \\\n") 1146 makefile.write(" %s%s\n" % (prerequisite, eol)) 1151 makefile.write( 1159 makefile.write("\t@echo note: %s\n" % message) 1160 makefile.write("\t%s\n" % action) [all …]
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
D | xcode.py | 1009 makefile = open(makefile_path, 'wb') 1015 makefile.write('all: \\\n') 1029 makefile.write(' %s%s\n' % (concrete_output, eol)) 1034 makefile.write('\n') 1046 makefile.write('%s%s \\\n' % (bol, concrete_output)) 1053 makefile.write(' : \\\n') 1065 makefile.write(' %s%s\n' % (prerequisite, eol)) 1070 makefile.write('\t@mkdir -p "%s"\n' % 1077 makefile.write('\t@echo note: %s\n' % message) 1078 makefile.write('\t%s\n' % action) [all …]
|
/third_party/gettext/gettext-tools/examples/hello-c++-kde/admin/ |
D | am_edit | 174 foreach $makefile (sort(@makefiles)) 176 processMakefile ($makefile); 200 local ($makefile) = @_; 236 $makefileDir = dirname($makefile); 238 $printname = $makefile; 240 $makefile = basename($makefile); 499 open (FILEIN, $makefile) 500 || die "Could not open $makefileDir/$makefile: $!\n"; 509 print "DOS CRLF within $makefileDir/$makefile!\n" if($MakefileData =~ y/\r//d); 1958 open (FILEOUT, "> $makefile") [all …]
|
/third_party/python/Tools/freeze/ |
D | freeze.py | 136 makefile = 'Makefile' 326 makefile = os.path.join(odir, makefile) 446 with open(makefile, 'w') as outfp: 474 with bkfile.open(makefile, 'w') as outfp:
|
/third_party/skia/third_party/externals/libpng/ |
D | CHANGES | 253 Renamed makefile.elf to makefile.lnx. 285 Added makefile.os2 and pngos2.def (A. Zabolotny) and makefile.s2x (W. Sebok) 286 Added pointers to "note on libpng versions" in makefile.lnx and README 303 Added makefile.wat (Pawel Mrochen), updated makefile.tc3 (Willem van Schaik) 325 Minor changes to makefile.s2x 329 Changed makefile.s2x to reduce security risk of using a relative pathname 336 Commented out i386istic "align" compiler flags in makefile.lnx. 347 Changed compiler flags in makefile.wat for better optimization 353 Added makefile.sco (contributed by Mike Hopkirk). 403 Added makefile.w32, for Microsoft C++ 4.0 and later (Tim Wegner). [all …]
|
/third_party/libpng/ |
D | CHANGES | 253 Renamed makefile.elf to makefile.lnx. 285 Added makefile.os2 and pngos2.def (A. Zabolotny) and makefile.s2x (W. Sebok) 286 Added pointers to "note on libpng versions" in makefile.lnx and README 303 Added makefile.wat (Pawel Mrochen), updated makefile.tc3 (Willem van Schaik) 325 Minor changes to makefile.s2x 329 Changed makefile.s2x to reduce security risk of using a relative pathname 336 Commented out i386istic "align" compiler flags in makefile.lnx. 347 Changed compiler flags in makefile.wat for better optimization 353 Added makefile.sco (contributed by Mike Hopkirk). 403 Added makefile.w32, for Microsoft C++ 4.0 and later (Tim Wegner). [all …]
|
/third_party/flutter/skia/third_party/externals/libpng/ |
D | CHANGES | 253 Renamed makefile.elf to makefile.lnx. 285 Added makefile.os2 and pngos2.def (A. Zabolotny) and makefile.s2x (W. Sebok) 286 Added pointers to "note on libpng versions" in makefile.lnx and README 303 Added makefile.wat (Pawel Mrochen), updated makefile.tc3 (Willem van Schaik) 325 Minor changes to makefile.s2x 329 Changed makefile.s2x to reduce security risk of using a relative pathname 336 Commented out i386istic "align" compiler flags in makefile.lnx. 347 Changed compiler flags in makefile.wat for better optimization 353 Added makefile.sco (contributed by Mike Hopkirk). 403 Added makefile.w32, for Microsoft C++ 4.0 and later (Tim Wegner). [all …]
|