欢迎来到冰点文库! | 帮助中心 分享价值,成长自我!
冰点文库
全部分类
  • 临时分类>
  • IT计算机>
  • 经管营销>
  • 医药卫生>
  • 自然科学>
  • 农林牧渔>
  • 人文社科>
  • 工程科技>
  • PPT模板>
  • 求职职场>
  • 解决方案>
  • 总结汇报>
  • ImageVerifierCode 换一换
    首页 冰点文库 > 资源分类 > DOCX文档下载
    分享到微信 分享到微博 分享到QQ空间

    怎样自动生成makefile.docx

    • 资源ID:17769959       资源大小:17.97KB        全文页数:9页
    • 资源格式: DOCX        下载积分:6金币
    快捷下载 游客一键下载
    账号登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录 QQ登录
    二维码
    微信扫一扫登录
    下载资源需要6金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP,免费下载
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    怎样自动生成makefile.docx

    1、怎样自动生成makefile怎样自动生成makefile 由于毕业设计开发的平台是Linux, 为了在Linux进行,Makefile的编写是必不可少的,为偷懒,我想使用autotools来进行Makefile的自动生成,在阅读大量的资料后,在理解的基础之上,做了一个小实验,过程记录得非常详细!我的平台是:HP 6510B NotebookFedora 8 32 位的Autotools工具的版本均为Fedora 8 完全自带的,尚未进行过升级!为了编译一个简单的源文件main.c,需要自动生成一个makefile,以下是步骤:第一步:-在/root/project/main目录下创建一个文件m

    2、ain.c,其内容如下:-#include int main(int argc, char* argv) printf(Hello, Auto Makefile!n); return 0; -此时状态如下:rootlocalhost main# pwd/root/project/mainrootlocalhost main# lsmain.crootlocalhost main# 第二步:-运行 autoscan , 自动创建两个文件: autoscan.log configure.scan此时状态如下:rootlocalhost main# autoscanrootlocalhost mai

    3、n# lsautoscan.log configure.scan main.crootlocalhost main# 第三步:-修改configure.scan的文件名为configure.in查看configure.in的内容:-# -*- Autoconf -*-# Process this file with autoconf to produce a configure script.AC_PREREQ(2.61)AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)AC_CONFIG_SRCDIR(main.c)AC_CONFI

    4、G_HEADER(config.h)# 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-解读以上的文件:-# -*- Autoconf -*-# Process this file with autoconf to produce a configure script.# AC_

    5、PREREQ:# 确保使用的是足够新的Autoconf版本。如果用于创建configure的Autoconf的版# 本比version 要早,就在标准错误输出打印一条错误消息并不会创建configure。AC_PREREQ(2.61)# 初始化,定义软件的基本信息,包括设置包的全称,版本号以及报告BUG时需要用的邮箱地址#AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)# 用来侦测所指定的源码文件是否存在,来确定源码目录的有效性#AC_CONFIG_SRCDIR(main.c)# 用于生成config.h文件,以便autoheade

    6、r使用#AC_CONFIG_HEADER(config.h)# Checks for programs.AC_PROG_CC# Checks for libraries.# Checks for header files.# Checks for typedefs, structures, and compiler characteristics.# Checks for library functions.# 创建输出文件。在configure.in的末尾调用本宏一次。#AC_OUTPUT-修改动作: 1.修改AC_INIT里面的参数: AC_INIT(main,1.0, pgpxc) 2.

    7、添加宏AM_INIT_AUTOMAKE, 它是automake所必备的宏,也同前面一样,PACKAGE是所要产生软件套件的名称,VERSION是版本编号。 3.在AC_OUTPUT后添加输出文件Makefile修改后的结果:-# -*- Autoconf -*-# Process this file with autoconf to produce a configure script.AC_PREREQ(2.61)AC_INIT(main, 1.0, pgpxc)AC_CONFIG_SRCDIR(main.c)AC_CONFIG_HEADER(config.h)AM_INIT_AUTOMAK

    8、E(main,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)-第四步:运行 aclocal, 生成一个“aclocal.m4”文件和一个缓冲文件夹autom4te.cache,该文件主要处理本地的宏定义。此时的状态是:rootlocalhost m

    9、ain# aclocalrootlocalhost main# lsaclocal.m4 autom4te.cache autoscan.log configure.in configure.in main.crootlocalhost main# 第五步:运行 autoconf, 目的是生成 configure 此时的状态是:rootlocalhost main# autoconfrootlocalhost main# lsaclocal.m4 autoscan.log configure.in main.cautom4te.cache configure configure.inrootl

    10、ocalhost main# 第六步:运行 autoheader,它负责生成config.h.in文件。该工具通常会从“acconfig.h”文件中复制用户附加的符号定义,因此此处没有附加符号定义,所以不需要创建“acconfig.h”文件。此时的状态是:rootlocalhost main# autoheaderrootlocalhost main# lsaclocal.m4 autoscan.log configure configure.inautom4te.cache config.h.in configure.in main.crootlocalhost main# 第七步:下面即将

    11、运行 automake, 但在此之前应该做一下准备工作!首先创建一个 Makefile.am.这一步是创建Makefile很重要的一步,automake要用的脚本配置文件是Makefile.am,用户需要自己创建相应的文件。之后,automake工具转换成Makefile.in。这个Makefile.am的内容如下:-AUTOMAKE_OPTIONS=foreignbin_PROGRAMS=mainmain_SOURCES=main.c-下面对该脚本文件的对应项进行解释。 其中的AUTOMAKE_OPTIONS为设置automake的选项。由于GNU(在第1章中已经有所介绍)对自己发布的软件有

    12、严格的规范,比如必须附 带许可证声明文件COPYING等,否则automake执行时会报错。automake提供了三种软件等级:foreign、gnu和gnits,让用 户选择采用,默认等级为gnu。在本例使用foreign等级,它只检测必须的文件。 bin_PROGRAMS定义要产生的执行文件名。如果要产生多个执行文件,每个文件名用空格隔开。 main_SOURCES定义“main”这个执行程序所需要的原始文件。如果”main”这个程序是由多个原始文件所产生的,则必须把它所用到的所有原 始文件都列出来,并用空格隔开。例如:若目标体“main”需要“main.c”、“sunq.c”、“main

    13、.h”三个依赖文件,则定义 main_SOURCES=main.c sunq.c main.h。要注意的是,如果要定义多个执行文件,则对每个执行程序都要定义相应的file_SOURCES。其次使用automake对其生成“configure.in”文件,在这里使用选项“adding-missing”可以让automake自动添加有一些必需的脚本文件。运行后的状态是:-rootlocalhost main# automake -add-missingconfigure.in:8: installing ./missingconfigure.in:8: installing ./install-s

    14、hMakefile.am: installing ./depcomprootlocalhost main# lsaclocal.m4 config.h.in configure.in main.c Makefile.inautom4te.cache configure depcomp Makefile.am missingautoscan.log configure.in install-sh Makefile.amrootlocalhost main# -第八步运行configure,在这一步中,通过运行自动配置设置文件configure,把Makefile.in变成了最终的Makefile

    15、。运行的结果如下:-rootlocalhost main# ./configure checking for a BSD-compatible install. /usr/bin/install -cchecking whether build environment is sane. yeschecking for a thread-safe mkdir -p. /bin/mkdir -pchecking for gawk. gawkchecking whether make sets $(MAKE). yeschecking for gcc. gccchecking for C compi

    16、ler default output file name. a.outchecking whether the C compiler works. yeschecking whether we are cross compiling. nochecking for suffix of executables. checking for suffix of object files. ochecking whether we are using the GNU C compiler. yeschecking whether gcc accepts -g. yeschecking for gcc

    17、option to accept ISO C89. none neededchecking for style of include used by make. GNUchecking dependency style of gcc. gcc3configure: creating ./config.statusconfig.status: creating Makefileconfig.status: creating config.hconfig.status: executing depfiles commandsrootlocalhost main# lsaclocal.m4 conf

    18、ig.h.in configure.in main.c Makefile.inautom4te.cache config.log configure.in Makefile missingautoscan.log config.status depcomp Makefile.am stamp-h1config.h configure install-sh Makefile.amrootlocalhost main# -第九步运行 make,对配置文件Makefile进行测试一下此时的状态如下:-rootlocalhost main# makecd . & /bin/sh /root/proje

    19、ct/main/missing -run aclocal-1.10 cd . & /bin/sh /root/project/main/missing -run automake-1.10 -foreign cd . & /bin/sh /root/project/main/missing -run autoconf/bin/sh ./config.status -recheckrunning CONFIG_SHELL=/bin/sh /bin/sh ./configure -no-create -no-recursionchecking for a BSD-compatible instal

    20、l. /usr/bin/install -cchecking whether build environment is sane. yeschecking for a thread-safe mkdir -p. /bin/mkdir -pchecking for gawk. gawkchecking whether make sets $(MAKE). yeschecking for gcc. gccchecking for C compiler default output file name. a.outchecking whether the C compiler works. yesc

    21、hecking whether we are cross compiling. nochecking for suffix of executables. checking for suffix of object files. ochecking whether we are using the GNU C compiler. yeschecking whether gcc accepts -g. yeschecking for gcc option to accept ISO C89. none neededchecking for style of include used by mak

    22、e. GNUchecking dependency style of gcc. gcc3configure: creating ./config.status/bin/sh ./config.statusconfig.status: creating Makefileconfig.status: creating config.hconfig.status: config.h is unchangedconfig.status: executing depfiles commandscd . & /bin/sh /root/project/main/missing -run autoheade

    23、rrm -f stamp-h1touch config.h.inmake all-ammake1: Entering directory /root/project/maingcc -DHAVE_CONFIG_H -I. -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.cmv -f .deps/main.Tpo .deps/main.Pogcc -g -O2 -o main main.o cd . & /bin/sh ./config.status config.hconfig.status: creating co

    24、nfig.hconfig.status: config.h is unchangedmake1: Leaving directory /root/project/mainrootlocalhost main# lsaclocal.m4 autoscan.log config.h.in config.status configure.in depcomp main main.o Makefile.am Makefile.in stamp-h1autom4te.cache config.h config.log configure configure.in install-sh main.c Makefile Makefile.am missingrootlocalhost main# -第十步运行生成的文件 main:-rootlocalhost main# ./mainHello, Auto Makefile!rootlocalhost main# -我用的是ubuntu以上就是全文了.但有一处要改:用aclocal全报有一个m4文件有错.找到报错的那一行.把变量加个中括号就可以了.


    注意事项

    本文(怎样自动生成makefile.docx)为本站会员主动上传,冰点文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰点文库(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

    copyright@ 2008-2023 冰点文库 网站版权所有

    经营许可证编号:鄂ICP备19020893号-2


    收起
    展开