OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:topdir
(Results
1 - 11
of
11
) sorted by null
/development/ide/emacs/
android-compile.el
55
(defun android-find-makefile (
topdir
)
59
TOPDIR
is the root directory of the build.
61
MAKEFILE_PATH is the relative path of the makefile wrt
TOPDIR
.
63
;; TODO: Could check that
topdir
is the start of default-directory.
64
(unless (> (length
topdir
) 2)
65
(error "
Topdir
invalid %s for current dir %s"
topdir
default-directory))
69
(while (and (> (length default-directory) (length
topdir
))
78
(if (string= default-directory
topdir
)
81
(setq default-directory (substring default-directory (length
topdir
) nil)
[
all
...]
/external/llvm/utils/
getsrcs.sh
13
# The optional -
topdir
option can be used to specify the top LLVM source
21
if test "$1" = "-
topdir
" ; then
22
TOPDIR
="$2"
25
TOPDIR
=`llvm-config --src-root`
28
if test -d "$
TOPDIR
" ; then
29
cd $
TOPDIR
30
./utils/llvmdo -
topdir
"$
TOPDIR
" \
countloc.sh
15
# The script takes one optional option, -
topdir
, which specifies the top llvm
24
if test "$1" = "-
topdir
" ; then
25
TOPDIR
="$2"
28
TOPDIR
=`llvm-config --src-root`
32
if test -d "$
TOPDIR
" ; then
33
cd $
TOPDIR
34
./utils/llvmdo -
topdir
"$
TOPDIR
" -dirs "include lib tools test utils examples" -code-only wc -l | awk '\
llvmgrep
21
if test "$1" = "-
topdir
" ; then
22
TOPDIR
="$2"
25
TOPDIR
=`llvm-config --src-root`
28
if test -d "$
TOPDIR
" ; then
29
cd $
TOPDIR
35
./utils/llvmdo -
topdir
"$
TOPDIR
" \
/external/chromium_org/sdch/open-vcdiff/packages/
deb.sh
45
topdir
="${PWD%/*}"
66
ln -s "${
topdir
}/${archive}.tar.gz" "${LIB}${archive}.orig.tar.gz"
68
ln -s "${
topdir
}/${archive}.tar.gz" "${LIB}${archive_with_underscore}.orig.tar.gz"
/external/chromium_org/third_party/tcmalloc/vendor/packages/
deb.sh
31
topdir
="${PWD%/*}"
52
ln -s "${
topdir
}/${archive}.tar.gz" "${LIB}${archive}.orig.tar.gz"
54
ln -s "${
topdir
}/${archive}.tar.gz" "${LIB}${archive_with_underscore}.orig.tar.gz"
/external/cmockery/cmockery_0_1_2/packages/
deb.sh
30
topdir
="${PWD%/*}"
33
archive="$(basename "$(ls -1 ${
topdir
}/$PACKAGE*.tar.gz | tail -n 1)" .tar.gz)"
50
ln -s "${
topdir
}/${archive}.tar.gz" "${LIB}${archive}.orig.tar.gz"
/cts/apps/CameraITS/tools/
run_all_tests.py
57
topdir
= tempfile.mkdtemp()
59
os.mkdir(os.path.join(
topdir
, d))
60
print "Saving output files to:",
topdir
, "\n"
75
outdir = os.path.join(
topdir
,scene)
/external/e2fsprogs/debian/attic/libs/
rules
24
topdir
= $(shell pwd)
25
debdir = $(
topdir
)/debian
27
builddir = $(
topdir
)/builddir
85
sed s%$(
topdir
)/lib/et%/usr/share/comerr% \
94
sed s%$(
topdir
)/lib/ss%/usr/share/ss% \
115
install -p $(
topdir
)/doc/libext2fs_*.html \
118
install -p $(
topdir
)/lib/et/com_err_*.html \
122
install -p $(
topdir
)/doc/libext2fs.texinfo \
124
install -p $(
topdir
)/lib/et/com_err.texinfo \
139
install -p $(
topdir
)/lib/et/compile_et.1 $(maindir)/usr/man/man1
[
all
...]
/external/e2fsprogs/debian/
rules
53
topdir
?= $(shell pwd)
macro
54
debdir ?= ${
topdir
}/debian
256
${
topdir
}/configure ${COMMON_CONF_FLAGS} ${STD_CONF_FLAGS} ${EXTRA_CONF_FLAGS} \
260
${
topdir
}/configure ${COMMON_CONF_FLAGS} ${STD_CONF_FLAGS} ${EXTRA_CONF_FLAGS} \
269
${
topdir
}/configure ${MIPS_NOPIC_CONF_FLAGS} \
272
${
topdir
}/configure ${MIPS_NOPIC_CONF_FLAGS} \
286
${
topdir
}/configure ${COMMON_CONF_FLAGS} ${BF_CONF_FLAGS} ${EXTRA_CONF_FLAGS} \
290
${
topdir
}/configure ${COMMON_CONF_FLAGS} ${BF_CONF_FLAGS} ${EXTRA_CONF_FLAGS} \
305
${
topdir
}/configure ${STATIC_CONF_FLAGS} ${EXTRA_CONF_FLAGS} \
310
${
topdir
}/configure ${STATIC_CONF_FLAGS} ${EXTRA_CONF_FLAGS}
[
all
...]
/development/build/tools/
windows_sdk.mk
25
# Define WIN_SDK_TARGETS (the list of targets located in
topdir
/sdk)
28
include $(
TOPDIR
)sdk/build/windows_sdk_tools.mk
32
# the
topdir
/development directory and are somehow platform-dependent.
94
$(
TOPDIR
)development/build/tools/patch_windows_sdk.sh $(subst @,-q,$(hide)) \
95
$(WIN_SDK_DIR)/$(WIN_SDK_NAME) $(OUT_DIR) $(
TOPDIR
)
97
$(
TOPDIR
)sdk/build/patch_windows_sdk.sh $(subst @,-q,$(hide)) \
98
$(WIN_SDK_DIR)/$(WIN_SDK_NAME) $(OUT_DIR) $(
TOPDIR
)
Completed in 793 milliseconds