HomeSort by relevance Sort by last modified time
    Searched full:makefile (Results 476 - 500 of 3322) sorted by null

<<11121314151617181920>>

  /ndk/sources/host-tools/make-3.81/tests/scripts/features/
vpathplus 8 open(MAKEFILE,"> $makefile");
10 # The Contents of the MAKEFILE ...
12 print MAKEFILE "VPATH = $VP\n";
14 print MAKEFILE <<'EOMAKE';
54 close(MAKEFILE);
72 &run_make_with_options($makefile,"general",&get_logfile);
85 &run_make_with_options($makefile,"notarget",&get_logfile,512);
98 &run_make_with_options($makefile,"intermediate",&get_logfile);
117 &run_make_with_options($makefile,"intermediate",&get_logfile)
    [all...]
double_colon 15 # The Contents of the MAKEFILE ...
17 open(MAKEFILE,"> $makefile");
19 print MAKEFILE <<'EOF';
44 close(MAKEFILE);
48 &run_make_with_options($makefile, "all", &get_logfile, 0);
55 &run_make_with_options($makefile, "-j10 all", &get_logfile, 0);
62 &run_make_with_options($makefile, "bar", &get_logfile, 0);
69 &run_make_with_options($makefile, "-j10 bar", &get_logfile, 0);
79 &run_make_with_options($makefile, "foo", &get_logfile, 0)
    [all...]
  /ndk/sources/host-tools/make-3.81/tests/scripts/functions/
call 7 open(MAKEFILE, "> $makefile");
9 # The Contents of the MAKEFILE ...
11 print MAKEFILE <<'EOMAKE';
63 # END of Contents of MAKEFILE
65 close(MAKEFILE);
67 &run_make_with_options($makefile, "", &get_logfile);
76 open(MAKEFILE,"> $makefile2");
78 print MAKEFILE <<'EOF';
93 close(MAKEFILE);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnPropertyValue.pl 64 Merged /trunk/Makefile:r33020
66 expectedReturn => ["/trunk/Makefile:r33020", undef],
73 Reverse-merged /trunk/Makefile:r33020
75 expectedReturn => ["/trunk/Makefile:r33020", undef],
178 Reverse-merged /trunk/Makefile:r33020
179 Merged /trunk/Makefile:r41697
181 expectedReturn => ["/trunk/Makefile:r33020", " Merged /trunk/Makefile:r41697\n"],
188 Merged /trunk/Makefile:r33020
189 Merged /trunk/Makefile.shared:r5835
    [all...]
parseDiff.pl 39 Index: Makefile
41 --- Makefile (revision 53052)
42 +++ Makefile (working copy)
52 Index: Makefile
54 --- Makefile (revision 53052)
55 +++ Makefile (working copy)
62 indexPath => "Makefile",
151 Index: Makefile
153 --- Makefile (revision 53052)
154 +++ Makefile (working copy
    [all...]
  /external/clang/tools/c-arcmt-test/
Makefile 1 ##===- tools/c-arcmt-test/Makefile -------------------------*- Makefile -*-===##
21 # LINK_COMPONENTS before including Makefile.rules
22 include $(CLANG_LEVEL)/../../Makefile.config
36 include $(CLANG_LEVEL)/Makefile
  /external/elfutils/po/
ChangeLog 3 * Makefile.in.in: Update from gettext 0.16.1.
13 * Makefile.in.in: Remove MKINSTALLDIRS.
30 * Makefile.in.in (XGETTEXT_OPTIONS): Move adding of --flag options
35 * Makefile.in.in: Add src/elfcmp.
39 * Makefile.in.in (XGETTEXT_OPTIONS): Define.
  /external/icu4c/samples/ufortune/resources/
Makefile 4 # icu/source/samples/ufortune/resources/Makefile
7 # See the instructions in the parent Makefile,
8 # icu/source/samples/ufortune/Makefile.
13 # Two ICU tools are run from this makefile:
21 # another makefile, which in turn runs two more
  /external/llvm/tools/gold/
Makefile 1 #===- tools/gold/Makefile ----------------------------------*- Makefile -*-===##
21 # early so we can set up LINK_COMPONENTS before including Makefile.rules
22 include $(LEVEL)/Makefile.config
29 include $(LEVEL)/Makefile.common
  /development/tools/idegen/src/com/android/idegen/
StandardModule.java 63 File makeFile;
73 public StandardModule(String moduleName, String makeFile) {
74 this(moduleName, new File(makeFile), false);
77 public StandardModule(String moduleName, String makeFile, boolean searchForSrc) {
78 this(Preconditions.checkNotNull(moduleName), new File(Preconditions.checkNotNull(makeFile)),
82 public StandardModule(String moduleName, File makeFile, boolean searchForSrc) {
84 this.makeFile = makeFile;
85 this.moduleRoot = makeFile.getParentFile();
86 this.repoRoot = DirectorySearch.findRepoRoot(makeFile);
    [all...]
  /external/elfutils/
ChangeLog 12 * Makefile.am (pkginclude_HEADERS): New variable, install version.h.
32 * Makefile.am: Remove traces of mini builds.
42 * Makefile.am (EXTRA_DIST): Add EXCEPTION file.
55 for non-generic linker right. See src/Makefile.am.
59 * Makefile.am (DISTCHECK_CONFIGURE_FLAGS): New variable.
68 * Makefile.am (all_SUBDIRS): Add backends.
69 * configure.ac: Write backends/Makefile.
93 * Makefile.am (all_SUBDIRS): Put libdwfl before libdw.
101 * Makefile.am (all_SUBDIRS): Add libdwfl.
102 * configure.ac: Write libdwfl/Makefile
    [all...]
configure.ac 23 AC_CONFIG_FILES([config/Makefile])
39 AC_CONFIG_FILES([Makefile])
43 AC_CONFIG_FILES([m4/Makefile])
111 dnl The automake generated Makefile cannot deal with macros in the name
117 dnl See src/Makefile.am for more information.
189 dnl AC_CONFIG_FILES([doc/Makefile])
192 AC_CONFIG_FILES([lib/Makefile])
195 AC_CONFIG_FILES([libelf/Makefile])
198 AC_CONFIG_FILES([libebl/Makefile])
201 AC_CONFIG_FILES([libdw/Makefile])
    [all...]
  /ndk/sources/host-tools/make-3.81/tests/
run_make_tests.pl 75 # [0] (string): The makefile to be tested. undef means use the last one.
86 # If the user specified a makefile string, create a new makefile to contain
93 $makefile = $old_makefile;
95 if (! defined($makefile)) {
96 $makefile = &get_tmpfile();
102 # Replace @MAKEFILE@ with the makefile name and @MAKE@ with the path to
104 $makestring =~ s/#MAKEFILE#/$makefile/g
    [all...]
  /ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/test/
Makefile 79 @echo "You need to configure the STLport directory at the start of the Makefile."
92 test_stlport46: test.cpp Makefile
95 test_stlport46d: test.cpp Makefile
98 test_stlport50: test.cpp Makefile
101 test_stlport50d: test.cpp Makefile
104 test_stlport51: test.cpp Makefile
107 test_stlport51d: test.cpp Makefile
110 test_stlport52: test.cpp Makefile
113 test_stlport52d: test.cpp Makefile
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/test/
Makefile 79 @echo "You need to configure the STLport directory at the start of the Makefile."
92 test_stlport46: test.cpp Makefile
95 test_stlport46d: test.cpp Makefile
98 test_stlport50: test.cpp Makefile
101 test_stlport50d: test.cpp Makefile
104 test_stlport51: test.cpp Makefile
107 test_stlport51d: test.cpp Makefile
110 test_stlport52: test.cpp Makefile
113 test_stlport52d: test.cpp Makefile
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/test/
Makefile 79 @echo "You need to configure the STLport directory at the start of the Makefile."
92 test_stlport46: test.cpp Makefile
95 test_stlport46d: test.cpp Makefile
98 test_stlport50: test.cpp Makefile
101 test_stlport50d: test.cpp Makefile
104 test_stlport51: test.cpp Makefile
107 test_stlport51d: test.cpp Makefile
110 test_stlport52: test.cpp Makefile
113 test_stlport52d: test.cpp Makefile
  /ndk/build/tools/toolchain-patches/gcc/
0006-Disable-libstdc-versioning.patch 11 gcc-4.6/libstdc++-v3/src/Makefile.am | 2 +-
12 gcc-4.6/libstdc++-v3/src/Makefile.in | 7 +++++--
15 diff --git a/gcc-4.6/libstdc++-v3/src/Makefile.in b/gcc-4.6/libstdc++-v3/src/Makefile.in
17 --- a/gcc-4.6/libstdc++-v3/src/Makefile.in
18 +++ b/gcc-4.6/libstdc++-v3/src/Makefile.in
38 diff --git a/gcc-4.7/libstdc++-v3/src/Makefile.in b/gcc-4.7/libstdc++-v3/src/Makefile.in
40 --- a/gcc-4.7/libstdc++-v3/src/Makefile.in
41 +++ b/gcc-4.7/libstdc++-v3/src/Makefile.i
    [all...]
  /development/ide/emacs/
android-compile.el 44 "\\(^\\(\\sw\\|[/_]\\)+\\(Makefile\\|\\.mk\\):[0-9]+:.*warning\\)\\|\\(^/bin/bash\\)"
49 (defun android-makefile-exists-p (directory)
50 "Return t if an Android makefile exists in DIRECTORY."
53 (file-exists-p (concat directory "Makefile"))))
55 (defun android-find-makefile (topdir)
56 "Ascend the current path until an Android makefile is found.
58 the file is named Makefile.
61 MAKEFILE_PATH is the relative path of the makefile wrt TOPDIR.
62 Signal an error if no Makefile was found."
70 (not (android-makefile-exists-p default-directory))
    [all...]
  /external/zlib/src/old/os2/
Makefile.os2 0 # Makefile for zlib under OS/2 using GCC (PGCC)
5 # cp Makefile.os2 ..
7 # make -f Makefile.os2 test
9 # This makefile will build a static library z.lib, a shared library
52 nt/Makefile.nt nt/zlib.dnt contrib/README.contrib contrib/*.txt \
56 contrib/untgz/Makefile contrib/untgz/*.c contrib/untgz/*.w32
92 mv Makefile Makefile~; cp -p Makefile.in Makefile
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/
Makefile.in 0 ## Makefile.in for ICU tests
45 $(RMV) hdrtst/Makefile
46 $(RMV) perf/convperf/Makefile
85 $(RMV) Makefile
89 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  /external/icu4c/test/perf/
Makefile.in 0 ## Makefile.in for ICU tests
45 $(RMV) hdrtst/Makefile
46 $(RMV) perf/convperf/Makefile
85 $(RMV) Makefile
89 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  /external/zlib/src/
INDEX 5 Makefile dummy Makefile that tells you to ./configure
6 Makefile.in template for Unix Makefile
9 make_vms.com makefile for VMS
27 nintendods/ makefile for Nintendo DS
  /external/libffi/
ChangeLog.libffi 144 * Makefile.am: Ditto.
180 * man/Makefile.am (EXTRA_DIST): Remove ffi_prep_closure.3.
182 * man/Makefile.in: Rebuilt.
217 * Makefile.am (EXTRA_DIST): Add darwin64.S
218 * Makefile.in: Rebuilt.
238 * Makefile.am (SUBDIRS): Add man dir.
239 * Makefile.in: Rebuilt.
240 * configure.ac: Create Makefile.
243 man/Makefile.am man/Makefile.in: New files
    [all...]
  /external/elfutils/libasm/
ChangeLog 3 * Makefile.am [USE_TLS]: Like libasm.so with libpthread.
13 * Makefile.am (euinclude): Variable removed.
29 * Makefile.am (CLEANFILES): Add libasm.so.$(VERSION).
33 * Makefile.am (INCLUDES): Search in libdw.
41 * Makefile.am: Use $(LINK) not $(CC) when creating DSO.
47 * Makefile.am (AM_CFLAGS): Add -std=gnu99.
63 * Makefile.am (AM_CFLAGS): Add -Wunused -Wextra -Wformat=2.
69 * Makefile.am: Remove lint handling.
76 * Makefile.am: Check for text relocations in constructed DSO.
78 * Makefile.am (AM_CFLAGS): More warnings. Add -fmudflap for MUDFLAP
    [all...]
  /external/bison/djgpp/
fnchange.lst 8 @V@/examples/calc++/Makefile.am @V@/examples/calcxx/Makefile.am
9 @V@/examples/calc++/Makefile.in @V@/examples/calcxx/Makefile.in
23 @V@/po/Makefile.in.in @V@/po/Makefile.in-in
24 @V@/runtime-po/Makefile.in.in @V@/runtime-po/Makefile.in-in

Completed in 762 milliseconds

<<11121314151617181920>>