青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

isware

[轉]linux c 一個autotools的最簡單例子

  1、準備:
     

   需要工具autoscan aclocal autoheader automake autoconf make 等工具.


  2、測試程序編寫:
     


      建立目錄:mkdir include src
     
      編寫程序:include/str.h
      
#include <stdio.h>

int str(char *string);

      編寫程序:src/str.c
      
#include "str.h"
//print string
int str(char *string){
        printf(
"\n----PRINT STRING----\n\"%s\"\n",string);
        
return 0;
}


//interface of this program
int main(int argc , char **argv){
        
char str_read[1024];
        printf(
"Please INPUT something end by [ENTER]\n");
        scanf(
"%s",str_read);
        
return str(str_read );
}


3、生成configure.in
   

configure.in是automake的輸入文件,所以必須先生成該文件。
    執行命令:
[root@localhost str]# ls
include  src
[root
@localhost str]# autoscan
autom4te: configure.ac: no such file or directory
autoscan
: /usr/bin/autom4te failed with exit status: 1
[root
@localhost str]# ls
autoscan.log  configure.scan  include  src
[root
@localhost str]# cp configure.scan configure.in 

修改 configure.in
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.


AC_PREREQ(
2.59)
AC_INIT(FULL
-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AC_CONFIG_SRCDIR([include
/str.h])
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.

AC_OUTPUT

修改
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)

AC_INIT(str,0.0.1, [bug@sounos.org])

FULL-PACKAGE-NAME 為程序名稱,VERSION為當前版本, BUG-REPORT-ADDRESS為bug匯報地址
    添加AM_INIT_AUTOMAKE
    添加AC_CONFIG_FILES([Makefile])
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.


AC_PREREQ(
2.59)
#AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AC_INIT(str, 0.0.1, [bug@sounos.org])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([include
/str.h])
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.

AC_CONFIG_FILES([Makefile])
AC_OUTPUT

4、執行aclocal

[root@localhost str]# aclocal
/usr/share/aclocal/libfame.m4:6: warning: underquoted definition of AM_PATH_LIBFAME
  run info 
'(automake)Extending aclocal'
  or see http
://sources.redhat.com/automake/automake.html#Extending-aclocal

5、制作Makefile.am


[root@localhost str]# cat Makefile.am
#Makefile.am

bin_PROGRAMS    = str
str_SOURCES     
= include/str.h src/str.c
str_CPPFLAGS    
= -I include/

6、autoheader

[root@localhost str]# autoheader

7、automake必須文件:


    *  install-sh
    
* missing
    
* INSTALL
    
* NEWS
    
* README
    
* AUTHORS
    
* ChangeLog
    
* COPYING
    
* depcomp 
其中
    * install-sh
    
* missing
    
* INSTALL
    
* COPYING
    
* depcomp 
可以通過automake -a選項自動生成,所以這里只需要建立如下文件
[root@localhost str]# touch NEWS README AUTHORS ChangeLog

8、執行automake


[root@localhost str]# automake -a
configure.ac: installing `./install-sh'
configure.ac: installing `./missing
'
Makefile
.am: installing `./INSTALL'
Makefile.am: installing `./COPYING
'
Makefile
.am: installing `./compile'
Makefile.am: installing `./depcomp
'

9、autoconf

[root@localhost str]# autoconf
[root@localhost str]# ls
aclocal.m4      autoscan.log  config.h.in   configure.scan  include     Makefile.am  NEWS
AUTHORS         ChangeLog     configure     COPYING         INSTALL     Makefile
.in  README
autom4te
.cache  compile       configure.ac  depcomp         install-sh  missing      src

10、執行測試:


      
執行./configure
[root@localhost str]# ./configure --prefix=/u
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: config.h is unchanged
config
.status: executing depfiles commands
執行 make
[root@localhost str]# make
make  all-am
make[
1]: Entering directory `/data/devel/c/str'
if gcc -DHAVE_CONFIG_H -I. -I. -I.  -I include/   -g -O2 -MT str-str.o -MD -MP -MF ".deps/str-str.Tpo" -c -o str-str.o `test -f 
'src/str.c' || echo './'`src/str.c; \
then mv -f ".deps/str-str.Tpo" ".deps/str-str.Po"; else rm -f ".deps/str-str.Tpo"; exit 1; fi
gcc  -g -O2   -o str  str-str.o
make[1]: Leaving directory `/data/devel/c/str
'
執行 make install
[root@localhost str]# make install
make[1]: Entering directory `/data/devel/c/str'
test -z "/u/bin" || mkdir -p -- "/u/bin"
  /usr/bin/install -c 
'str' '/u/bin/str'
make[1]: Nothing to be done for `install-data-am
'.
make[
1]: Leaving directory `/data/devel/c/str'

11、測試程序:

[root@localhost str]# /u/bin/str
Please INPUT something end by [ENTER]
abcksdhfklsdklfdjlkfd

----PRINT STRING----
"abcksdhfklsdklfdjlkfd"

到此結束!!



--------------------

添加測試包:
[root@localhost str]# make dist-gzip
{ test ! -d str-0.0.1 || { find str-0.0.1 -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr str-0.0.1; }; }
mkdir str-0.0.1
find str
-0.0.1 -type d ! -perm -777 -exec chmod a+rwx {} \-\
  
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \-\
  
! -type d ! -perm -400 -exec chmod a+r {} \-\
  
! -type d ! -perm -444 -exec /bin/sh /data/devel/c/str/install-sh --m a+r {} {} \\
|| chmod -R a+r str-0.0.1
tardir
=str-0.0.1 && /bin/sh /data/devel/c/str/missing --run tar chof - "$tardir" | GZIP=--best gzip ->str-0.0.1.tar.gz
{ test 
! -d str-0.0.1 || { find str-0.0.1 -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr str-0.0.1; }; }

添加一個支持子目錄、靜態庫、自定義configure選項的包

支持子目錄Makefile.am 選項 SUBDIR =
#Automake interface 
SUBDIRS = src
支持靜態庫Makefile.am
EXTRA_DIST  用于添加除源碼外的文件到dist包
#Automake interface
bin_PROGRAMS = hello
hello_SOURCES 
= hello.c lib/sbase.h
hello_CPPFLAGS 
= -I lib
hello_LDFLAGS 
= -static lib/libsbase.a
EXTRA_DIST 
= lib/libsbase.a
configure.in
AC_PREREQ(2.59)
#AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AC_INIT(hello, 0.0.1, [SounOS@gmail.com])
#AM 聲明
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src
/hello.c])
AC_CONFIG_HEADER([config
.h])

# Checks for programs.
AC_PROG_CC

# Checks for libraries.

# Checks for header files.

AC_HEADER_STDC
AC_CHECK_HEADERS([stdint
.h stdlib.h sys/socket.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T

#用于自定義configure 選項,見acinclude.am
AC_CHECK_EXTRA_OPTIONS
# Checks for library functions.

AC_CONFIG_FILES([Makefile
                 src
/Makefile])
AC_OUTPUT

posted on 2011-05-31 11:42 艾斯維亞 閱讀(319) 評論(0)  編輯 收藏 引用


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美日韩一区二区欧美激情| 国产日韩欧美中文| 国产综合激情| 久久久亚洲国产美女国产盗摄| 午夜精品电影| 国产一区自拍视频| 欧美国产一区二区三区激情无套| 乱码第一页成人| 亚洲美女色禁图| 亚洲视频在线观看视频| 国产色视频一区| 欧美成人免费大片| 欧美日韩高清在线观看| 香蕉免费一区二区三区在线观看| 午夜亚洲福利| 亚洲激情专区| 亚洲线精品一区二区三区八戒| 国产日本欧美一区二区| 亚洲电影在线播放| 欧美伦理91| 久久久久久国产精品mv| 欧美国产日韩二区| 亚洲欧美综合v| 欧美11—12娇小xxxx| 亚洲欧美日本伦理| 久久夜精品va视频免费观看| 亚洲视频在线一区观看| 欧美在线观看一区二区| 亚洲精品视频一区| 欧美一区二区| 亚洲一卡久久| 欧美成人小视频| 久久国产精品毛片| 欧美日韩亚洲免费| 久久综合伊人77777| 欧美视频精品一区| 亚洲国产你懂的| 国产在线精品一区二区夜色| 日韩视频在线一区二区三区| 狠狠色2019综合网| 亚洲性夜色噜噜噜7777| 亚洲精选一区| 久久视频国产精品免费视频在线| 亚洲中字在线| 欧美日韩精品一二三区| 欧美成人黄色小视频| 国产日韩欧美在线看| 在线综合欧美| 日韩一级精品| 老司机午夜精品| 久久婷婷国产综合国色天香| 国产精品久久久久久亚洲调教| 亚洲国产精品激情在线观看| 在线成人亚洲| 久久久久九九视频| 久久久久久999| 国产一区999| 性色av香蕉一区二区| 午夜影院日韩| 国产精品自拍一区| 亚洲一区欧美二区| 亚洲欧美日韩在线综合| 国产精品美女久久久久aⅴ国产馆| 91久久精品网| 9久re热视频在线精品| 欧美刺激性大交免费视频| 欧美成人精品一区| 亚洲精品乱码久久久久久| 欧美大色视频| 亚洲精品国精品久久99热| 亚洲精选在线观看| 欧美日韩情趣电影| 在线视频一区二区| 欧美在线观看视频一区二区三区| 国产精品国产三级欧美二区| 亚洲一区二区免费视频| 久久aⅴ国产紧身牛仔裤| 国产主播在线一区| 久久免费一区| 亚洲美女啪啪| 亚洲欧美日韩国产另类专区| 国产精品永久免费在线| 欧美一区二区私人影院日本 | 国产一区二区三区黄| 欧美在线免费视屏| 欧美电影电视剧在线观看| 亚洲精品久久久久久久久久久久久 | 欧美va亚洲va日韩∨a综合色| 欧美国产综合| 亚洲欧美日韩精品综合在线观看 | 欧美日韩在线免费| 亚洲一区二区精品在线观看| 久久久精品999| 亚洲精品一线二线三线无人区| 欧美国产在线视频| 亚洲视频一区在线| 久久在线免费视频| 一区二区三区视频免费在线观看| 国产精品久久久久aaaa| 久久久久国产一区二区三区四区| 91久久视频| 久久精品国产久精国产思思| 亚洲美女少妇无套啪啪呻吟| 国产日韩精品久久久| 欧美电影资源| 欧美一区日本一区韩国一区| 亚洲人成网站999久久久综合| 欧美中文字幕不卡| 亚洲狼人精品一区二区三区| 国产日本欧美一区二区三区在线| 欧美激情一区二区三级高清视频| 亚洲制服欧美中文字幕中文字幕| 欧美激情第1页| 欧美在线播放| 一区二区三区蜜桃网| 尤物yw午夜国产精品视频| 国产精品扒开腿做爽爽爽软件| 麻豆精品传媒视频| 性做久久久久久久久| 99国产精品| 欧美激情视频一区二区三区在线播放| 午夜在线一区二区| 一区二区久久| 最新亚洲一区| 亚洲二区在线视频| 国产精品视频福利| 国产精品vip| 欧美日韩一区二区三区免费| 久热精品视频在线观看一区| 欧美一区二区三区在线观看| 亚洲视频在线观看三级| 最新成人av在线| 亚洲第一精品在线| 男女视频一区二区| 美女999久久久精品视频| 久久国产精品亚洲77777| 亚洲欧美日韩精品久久久| 亚洲小说欧美另类社区| 一区二区三区国产盗摄| 99re在线精品| 亚洲美女电影在线| 99re亚洲国产精品| 亚洲久久在线| 中文国产一区| 亚洲一二三区在线| 亚洲一区免费网站| 亚洲字幕在线观看| 欧美一区二区在线免费播放| 亚洲欧美精品| 久久成人精品电影| 久久久久久**毛片大全| 久久一区二区精品| 欧美电影电视剧在线观看| 亚洲电影中文字幕| 亚洲日本中文| 宅男噜噜噜66一区二区66| 亚洲专区欧美专区| 久久精品一二三| 久久综合伊人77777| 欧美暴力喷水在线| 欧美性大战久久久久久久蜜臀| 国产精品免费视频观看| 国产综合一区二区| 91久久香蕉国产日韩欧美9色 | 国产精品永久免费在线| 国产在线精品自拍| 亚洲国产精品一区二区www| 亚洲精品一区二区三区蜜桃久| 一区二区日韩精品| 欧美一级精品大片| 欧美va日韩va| 制服诱惑一区二区| 久久久噜噜噜久久中文字幕色伊伊| 老**午夜毛片一区二区三区| 欧美精品在线一区二区| 国产精品老牛| 亚洲丰满在线| 亚洲欧美另类在线| 欧美激情影音先锋| 亚洲影视九九影院在线观看| 久久亚洲综合| 国产精品一区=区| 亚洲人成亚洲人成在线观看图片| 亚洲欧美在线免费观看| 麻豆91精品| 亚洲伊人伊色伊影伊综合网| 美女免费视频一区| 国产乱码精品一区二区三区av | 国产欧亚日韩视频| 日韩午夜在线电影| 久久色在线播放| 一区二区三区国产盗摄| 毛片基地黄久久久久久天堂| 国产精品一卡二| 洋洋av久久久久久久一区| 久久九九热免费视频| 一区二区欧美激情| 欧美另类一区| 亚洲国产精品嫩草影院| 久久天天躁狠狠躁夜夜爽蜜月|