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

📄 configure.in

📁 无线通信的主要编程软件,是无线通信工作人员的必备工具,关天相关教程我会在后续传上.
💻 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 + -