📄 bootstrap
字号:
#!/bin/sh
set -e
srcdir=src
ACLOCAL="aclocal"
AUTOMAKE="automake"
AUTOCONF="autoconf"
AUTOHEADER="autoheader"
set -x
(
$ACLOCAL
$AUTOCONF
[ -d config-aux ] || mkdir config-aux
$AUTOMAKE -a -c
)
set -x
(
# If you include this above, errors regarding $(EXEEXT) in
# tinyos/java/env/Makefile.am cause the block to be exited
# before running this command below. I was able to address
# the $(EXEEXT) errors for windows, but it still died in
# redhat 9 so I'm moving this call to below.
(cd platforms/mica/uisp; ./bootstrap)
)
rm -f config.cache $srcdir/config.cache
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -