automake/autoconf基本使用

一。

   建立工程:

     建立文件夹helloworld helloworld /src

    建立文件 helloworld /src/helloworld .c

二。

  执行:autoscan

             mv configure.scan configure.in

         修改:

         AC_INIT(helloworld,1, [email protected])
         添加:

         AM_INIT_AUTOMAKE(helloworld, 0.1)

         修改:

        

         AC_OUTPUT([ Makefile src/Makefile ])
三。
        在helloworld目录下建立文件
        Makefile.am
        内容:
        SUBDIRS=src
        建立:
        helloworld/srcMakefile.am
        内容:
          noinst_PROGRAMS=helloworld

         helloworld_SOURCES=helloworld.c

 四。

         命令:

         touch NEWS README ChangeLog AUTHORS

         [root@linux helloworld]# cp -f /usr/share/automake-1.7/depcomp .

         [root@linux helloworld]# cp -f /usr/share/automake-1.7/compile .

        

         aclocal

         autoheader

         autoconf

         automake -a

        ./configure

         make

    

       至此,helloworld目录下及helloworld/src下有Makefile

      

       纵观整个过程:

       1.改configure.scan 名为configure.in,

       2.在configure.in中改过三个地方,

       3.建立过两个Makefile.am,

       4.复制过两个文件到当前目录,

        5.其余的全是命令了

你可能感兴趣的:(linux,makefile,output)