configure.in

来自「无线通信的主要编程软件,是无线通信工作人员的必备工具,关天相关教程我会在后续传上」· IN 代码 · 共 66 行

IN
66
字号
#!/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 + =
减小字号Ctrl + -
显示快捷键?