当前位置:  技术问答>linux和unix

刚学的automake,高手指教下

    来源: 互联网  发布时间:2017-02-24

    本文导语:  这是简单的helloworld的内容 #include int main(void) {   printf("Hello,Linux World!n");   return 0; }                    这是configure.in文件的内容 #                                               -*...

这是简单的helloworld的内容
#include

int main(void)
{
  printf("Hello,Linux World!n");
  return 0;
}
                  

这是configure.in文件的内容
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AC_CONFIG_FILES([Makefile])
AC_CONFIG_SRCDIR([helloworld.c])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE(helloworld,1.0)


# Checks for programs.
AC_PROG_CC

# Checks for libraries.

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.

# Checks for library functions.
AC_OUTPUT

这是Makefile.am的内容

AUTOMAKE_OPTIONS=foreign
bin_PROGRAMS=helloworld
helloworld_SOURCES=hellloworld.c

操作过程是这样的
[wsh@localhost helloworld]$ vi configure.in
[wsh@localhost helloworld]$ vi Makefile.IN
[wsh@localhost helloworld]$ vi Makefile.in
[wsh@localhost helloworld]$ vi Makefile.am
[wsh@localhost helloworld]$ aclocal
[wsh@localhost helloworld]$ autoconf
[wsh@localhost helloworld]$ autoheader
[wsh@localhost helloworld]$ automake -a
[wsh@localhost helloworld]$ ./configure 
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
[wsh@localhost helloworld]$ make
cd . && /bin/sh /home/wsh/test/helloworld/missing --run autoheader
rm -f stamp-h1
touch config.h.in
cd . && /bin/sh ./config.status config.h
config.status: creating config.h
config.status: config.h is unchanged
make  all-am
make[1]: Entering directory `/home/wsh/test/helloworld'
make[1]: *** 没有规则可以创建“helloworld”需要的目标“hellloworld.o”。 停止。
make[1]: Leaving directory `/home/wsh/test/helloworld'
make: *** [all] 错误 2


请高手指教下把。
                          
   

|
http://www.blogjava.net/sunzhong/articles/297469.html

一步一步照着做,保证成功。

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • GNU Automake
  • automake的使用问题
  • make和automake什么关系
  • automake的問題
  • 已安装automake 版本1.9 为什么还是提示版本过低
  • 请教关于AUTOMAKE问题?
  • 请教automake的问题
  • 运行automake时的错误
  • configure.ac中AM_INIT_AUTOMAKE(NAME, VERSION) 貌似没有作用
  • 编译程序时,用Automake和Autoconf时有个问题请教,急急!
  • help!!!automake问题.
  • automake是做什么用的?
  • 请问在用automake,autoconf生成工程文件时,"aclocal"命令的作用?
  • 请教下,各位作MakeFile时用Automake这个工具么
  • 怎么能让automake生成的makefile里面包含有我指定的库
  • automake 怎么样来加载共享库呀!
  • 怎么修改automake,追加引用外部库
  • 高分相送,如何更改Autoconf和Automake使其被arm-linux-gcc编译
  • c/c++ iis7站长之家
  • 关于automake的问题


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3