Home
last modified time | relevance | path

Searched refs:makefile (Results 1 – 25 of 474) sorted by relevance

12345678910>>...19

/external/libpng/scripts/
DREADME.txt5 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 …]
/external/python/cpython2/PC/VS8.0/
Dbuild_ssl.py98 def create_makefile64(makefile, m32): argument
106 with open(makefile, 'w') as fout:
119 def fix_makefile(makefile): argument
122 if not os.path.isfile(makefile):
124 with open(makefile) as fin:
126 with open(makefile, 'w') as fout:
162 makefile="ms\\nt.mak"
163 m32 = makefile
168 makefile = "ms\\nt64.mak"
169 m32 = makefile.replace('64', '')
[all …]
/external/ltp/testcases/open_posix_testsuite/scripts/
Dgenerate-makefiles.sh43 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"
151 cat >> "$makefile.2" <<EOF
157 if [ ! -f "$makefile.3" ]; then
159 cat > "$makefile.3" <<EOF
[all …]
/external/python/cpython2/PC/VS9.0/
Dbuild_ssl.py62 def fix_makefile(makefile, platform_makefile, suffix): argument
74 with open(platform_makefile) as fin, open(makefile, 'w') as fout:
87 def copy_files(makefile, makevars): argument
96 with open(makefile) as fin:
194 makefile = MK1MF_FMT.format('')
196 makevars = parse_makefile(makefile)
208 new_makefile = makefile + '.new'
221 if os.path.exists(makefile):
222 os.remove(makefile)
223 os.rename(new_makefile, makefile)
[all …]
Dbuild.bat81 nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" clean
82 nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" all
83 nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" install
89 …nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" TCLDIR="%tcldir%…
90 …nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" TCLDIR="%tcldir%…
91 …nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" TCLDIR="%tcldir%…
/external/python/cpython2/PCbuild/
Dprepare_ssl.py71 def create_asms(makefile, tmp_d): argument
73 asm_makefile = os.path.splitext(makefile)[0] + '.asm.mak'
74 with open(makefile) as fin, open(asm_makefile, 'w') as fout:
95 def copy_includes(makefile, suffix): argument
102 with open(makefile) as fin:
141 makefile = makefile_template.format(suffix)
143 os.unlink(makefile)
146 os.rename(generated_makefile, makefile)
147 copy_includes(makefile, suffix)
150 create_asms(makefile, 'tmp'+suffix)
/external/python/cpython2/PC/VC6/
Dbuild_ssl.py93 def fix_makefile(makefile): argument
96 if not os.path.isfile(makefile):
99 fin = open(makefile)
103 fout = open(makefile, 'w')
151 makefile="ms\\nt.mak"
152 m32 = makefile
178 if not os.path.isfile(makefile) or os.path.getsize(makefile)==0:
197 fix_makefile(makefile)
215 makeCommand = "nmake /nologo -f \"%s\"" % makefile
220 print "Executing "+makefile+" failed"
/external/python/cpython2/Lib/distutils/tests/
Dtest_sysconfig.py18 self.makefile = None
21 if self.makefile is not None:
22 os.unlink(self.makefile)
54 self.makefile = test.test_support.TESTFN
55 fd = open(self.makefile, 'w')
61 d = sysconfig.parse_makefile(self.makefile)
66 self.makefile = test.test_support.TESTFN
67 fd = open(self.makefile, 'w')
73 d = sysconfig.parse_makefile(self.makefile)
/external/python/cpython2/PC/VS7.1/
Dbuild_ssl.py100 makefile = "ms\\nt.mak"
106 makefile="ms\\d32.mak"
112 makefile = "ms\\nt.mak"
119 makefile = "ms\\nt.mak"
144 if not os.path.isfile(makefile) or os.path.getsize(makefile)==0:
155 os.system("perl util\mk1mf.pl debug "+configure+" >"+makefile)
158 makeCommand = "nmake /nologo PERL=\"%s\" -f \"%s\"" %(perl, makefile)
163 print "Executing "+makefile+" failed"
/external/libxml2/bakefile/
DReadme.txt6 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.
/external/python/cpython2/Mac/Tools/
Dfixapplepython23.py48 def fix(makefile, do_apply): argument
51 lines = open(makefile).readlines()
69 os.rename(makefile, makefile + '~')
70 open(makefile, 'w').writelines(lines)
/external/python/cpython3/Lib/distutils/tests/
Dtest_sysconfig.py18 self.makefile = None
21 if self.makefile is not None:
22 os.unlink(self.makefile)
171 self.makefile = TESTFN
172 fd = open(self.makefile, 'w')
178 d = sysconfig.parse_makefile(self.makefile)
183 self.makefile = TESTFN
184 fd = open(self.makefile, 'w')
190 d = sysconfig.parse_makefile(self.makefile)
/external/python/cpython3/PCbuild/
Dprepare_ssl.py68 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)
/external/oss-fuzz/projects/lua/
Dbuild.sh18 sed "s/CFLAGS=/CFLAGS+=/g" -i $SRC/lua/makefile
19 sed "s/MYLDFLAGS=/MYLDFLAGS=${CFLAGS} /g" -i $SRC/lua/makefile
20 sed "s|CC= gcc|CC= ${CC}|g" -i $SRC/lua/makefile
/external/tensorflow/tensorflow/tools/android/test/
Dbuild.gradle10 // setting nativeBuildSystem below to 'makefile'. This will allow building the demo
15 // unless the contrib/makefile/downloads/ and gen/ dirs are deleted afterwards.
44 // set to 'bazel', 'cmake', 'makefile', 'none'
63 if (nativeBuildSystem == 'makefile') {
65 …demoLibPath = '../../../tensorflow/contrib/makefile/gen/lib/android_' + cpuType + '/libtensorflow_…
66 …inferenceLibPath = '../../../tensorflow/contrib/makefile/gen/lib/android_' + cpuType + '/libtensor…
114 if (nativeBuildSystem == 'bazel' || nativeBuildSystem == 'makefile') {
164 commandLine 'tensorflow/contrib/makefile/build_all_android.sh', \
166 'tensorflow/contrib/makefile/sub_makefiles/android/Makefile.in', \
184 if (nativeBuildSystem == 'bazel' || nativeBuildSystem == 'makefile') {
/external/llvm-project/openmp/runtime/tools/lib/
DBuild.pm203 my $makefile = $job->{ makefile };
216 $makefile = shorter( $makefile );
221 printf( "%${width}s: %s\n", "Makefile", $makefile );
232 "-f", $makefile,
/external/tensorflow/tensorflow/lite/examples/ios/camera/tflite_camera_example_with_select_tf_ops.xcodeproj/
Dproject.pbxproj40 …leType = archive.ar; name = "libtensorflow-lite.a"; path = "../../../../makefile/gen/lib/libtensor…
41 …astKnownFileType = archive.ar; name = libprotobuf.a; path = ../../../../makefile/gen/protobuf_ios/…
42 …nce; lastKnownFileType = archive.ar; name = nsync.a; path = ../../../../makefile/gen/lib/nsync.a; …
207 "${SRCROOT}/../../../../makefile/gen/lib/libtensorflow-lite.a",
230 "${SRCROOT}/../../../../makefile/gen/lib/libtensorflow-lite.a",
280 ../../../../../contrib/makefile/downloads/flatbuffers/include/,
281 ../../../../../contrib/makefile/downloads/eigen/,
282 ../../../../../contrib/makefile/downloads/,
285 LIBRARY_SEARCH_PATHS = ../../../../../contrib/makefile/gen/lib/;
328 ../../../../../contrib/makefile/downloads/flatbuffers/include/,
[all …]
/external/python/cpython3/Lib/test/
Dtest_sysconfig.py394 makefile = sysconfig.get_makefile_filename()
395 self.assertTrue(os.path.isfile(makefile), makefile)
399 with open(TESTFN, "w") as makefile:
400 print("var1=a$(VAR2)", file=makefile)
401 print("VAR2=b$(var3)", file=makefile)
402 print("var3=42", file=makefile)
403 print("var4=$/invalid", file=makefile)
404 print("var5=dollar$$5", file=makefile)
406 "-x86_64-linux-gnu", file=makefile)
/external/python/cpython2/Lib/test/
Dtest_sysconfig.py25 self.makefile = None
48 if self.makefile is not None:
49 os.unlink(self.makefile)
249 makefile = sysconfig.get_makefile_filename()
250 self.assertTrue(os.path.isfile(makefile), makefile)
252 self.assertEqual(sysconfig._get_makefile_filename(), makefile)
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbinline.py103 with open(makefilePath, 'w+') as makefile:
106 makefile.write(line + "\n")
110 makefile.write(
114 makefile.write("CXXFLAGS += -std=c++11\n")
116 makefile.write("include Makefile.rules\n")
/external/oss-fuzz/projects/ibmswtpm2/
Dno_writes.patch83 diff --git a/makefile b/makefile
85 --- a/makefile
86 +++ b/makefile
/external/autotest/client/tests/iozone/
Dmakefile.patch1 --- iozone3_347/src/current/makefile.orig 2011-02-07 20:00:02.000000000 -0800
2 +++ iozone3_347/src/current/makefile 2011-02-07 20:01:03.000000000 -0800
/external/autotest/client/tests/netpipe/
Dmakefile.patch1 *** src/makefile Thu May 10 09:29:09 2007
2 --- srcnew/makefile Fri Mar 5 16:26:31 2010
/external/boringssl/src/util/
Dgenerate_build_files.py110 with open('sources.mk', 'w+') as makefile:
111 makefile.write(self.header)
112 makefile.write('\n')
113 self.PrintVariableSection(makefile, 'crypto_sources', files['crypto'])
119 makefile, '%s_%s_sources' % (osname, arch), asm_files)
312 with open('eureka.mk', 'w+') as makefile:
313 makefile.write(self.header)
315 self.PrintVariableSection(makefile, 'crypto_sources', files['crypto'])
316 self.PrintVariableSection(makefile, 'ssl_sources', files['ssl'])
317 self.PrintVariableSection(makefile, 'tool_sources', files['tool'])
[all …]
/external/llvm-project/lldb/packages/Python/lldbsuite/test/builders/
Dbuilder.py52 makefile = os.path.join(src_dir, "Makefile")
53 if not os.path.isfile(makefile):
54 makefile = os.path.join(build_dir, "Makefile")
57 os.path.join(lldb_test, "make"), "-f", makefile

12345678910>>...19