?? configure.in
字號:
#!/bin/sh# Copyright (c) 2005 Intel Corporation# All rights reserved.## This file is distributed under the terms in the attached INTEL-LICENSE # file. If you do not find these files, copies can be found by writing to# Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, # 94704. Attention: Intel License Inquiry.dnl -*- m4 -*-# force autoconf 2.5 on Debian systemsAC_PREREQ(2.50)AC_INIT(ncc, 1.2alpha5)AC_CONFIG_AUX_DIR(config-aux)if test -z "$NESCC_PREFIX"; then AC_PATH_PROG(pathnescc, nescc) if test -z "$pathnescc"; then AC_MSG_ERROR(I can't find nescc) else NESCC_PREFIX=`dirname $pathnescc` NESCC_PREFIX=`dirname $NESCC_PREFIX` fifinescc_prefix=`(cd $NESCC_PREFIX;pwd)`AC_SUBST(nescc_prefix)AM_INIT_AUTOMAKE(ncc, 1.2alpha5)AC_PATH_PROG(pathperl, perl)if test -z "$pathperl" ; then AC_MSG_ERROR(I can't find perl); fiif test -z "$DEFAULT_TARGET"; then DEFAULT_TARGET=micafidefault_target=$DEFAULT_TARGETAC_MSG_NOTICE(Default ncc build target is $default_target)AC_SUBST(default_target)if test -z "$TOSDIR"; then if test -d ../tos; then TOSDIR=../tos elif test -d ../../tos; then TOSDIR=../../tos elif test -d $HOME/nest/tos; then TOSDIR=$HOME/nest/tos else AC_MSG_ERROR(I can't find the tos directory); fifiTOSDIR=`(cd $TOSDIR;pwd)`AC_MSG_NOTICE(TinyOS directory is $TOSDIR)AC_SUBST(TOSDIR)AC_OUTPUT( Makefile mig ncc ncg nesdoc)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -