⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bootstrap

📁 tinyos-2.x.rar
💻
字号:
#!/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 + -