代码搜索:Autoconf

找到约 8,642 项符合「Autoconf」的源代码

代码结果 8,642
www.eeworm.com/read/127438/6006272

sm makefile.sm

# DO NOT EDIT # This file created by buildiface smvar_autoconf = autoconf:autoconf-2.52:/home/gropp/bin/linux/autoconf smvar_autoconf_version = 2.52 smvar_do_dependencies = 0 mpi_sources = sendf.c re
www.eeworm.com/read/187103/8855225

bootstrap

#! /bin/sh # helps bootstrapping libtool, when checked out from CVS # requires GNU autoconf and GNU automake find . \( -name autom4te.cache -o -name libtool \) -print | xargs rm -r file=Makefile.in
www.eeworm.com/read/187101/8856463

exp common.exp

# -*- TCL -*- # Auxiliary procedures for autoconf tests. # Copyright (C) 1994 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the term
www.eeworm.com/read/187101/8856465

exp unix.exp

# -*- TCL -*- # Test-specific TCL procedures required by DejaGNU. # Copyright (C) 1994 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under
www.eeworm.com/read/187101/8856481

exp init.exp

# Test whether AC_INIT and AC_OUTPUT compile. autoconf_test AC_INIT ""
www.eeworm.com/read/426701/9003703

bootstrap

#!/bin/sh set -x aclocal -I config && autoheader && automake --add-missing --copy --foreign && autoconf
www.eeworm.com/read/281650/9144161

h config.h

/* rough config.h */ /* * History * * 2002-01-16: Nandy Lyu * - Initial code * */ #ifndef _CONFIG_H_ #define _CONFIG_H_ #include "autoconf.h" #endif /* _CONFIG_H_ */
www.eeworm.com/read/380126/9161545

bootstrap

#!/bin/sh find . \( -name autom4te.cache -o -name libtool \) -exec rm -r {} \; aclocal libtoolize --force --copy autoheader automake --add-missing --copy autoconf
www.eeworm.com/read/181778/9237191

sh autogen.sh

#!/bin/sh # Automakeversion AM_1=1 AM_2=7 AM_3=6 # Autoconfversion AC_1=2 AC_2=57 # Libtoolversion LT_1=1 LT_2=5 # Check automake version AM_VERSION=`automake --version | sed -n -e 's#[^0-9]* \([0
www.eeworm.com/read/359995/10112584

txt makefile.txt

内核源码中的makefiles(不含动态生成的.flags文件)主要分为以下四类: 1. 主目录下的Makefile(不妨称为main-makefile) 它主要有两个作用:生成vmlinux(内核映像)和modules(模块)。 2. 主目录下的Rules.make Rules.make中定义通用规则供main-makefile和subdir-makefiles调用。 变量su