亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費(fèi)注冊 查看新帖 |

Chinaunix

  平臺 論壇 博客 文庫
最近訪問板塊 發(fā)新帖
查看: 3832 | 回復(fù): 2
打印 上一主題 下一主題

關(guān)于使用automake的問題??在線等,請各位大蝦幫忙! [復(fù)制鏈接]

論壇徽章:
0
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報(bào)告]
發(fā)表于 2007-12-04 10:11 |只看該作者 |倒序?yàn)g覽
我在使用automake的時候總是會出現(xiàn)這樣一個錯誤:

automake: `configure.ac' or `configure.in' is required


請各位大蝦指點(diǎn)

論壇徽章:
0
2 [報(bào)告]
發(fā)表于 2007-12-04 16:55 |只看該作者
automake 需要掃描 configure.ac 或 configure.in 生成 configure腳本和Makefile.in

論壇徽章:
0
3 [報(bào)告]
發(fā)表于 2007-12-10 04:01 |只看該作者
簡單例子:

  1. $ ls
  2. Makefile.am     configure.ac    hello.c
  3. $ aclocal
  4. $ autoheader
  5. $ autoconf
  6. $ automake --add-missing
  7. configure.ac: installing `./install-sh'
  8. configure.ac: installing `./mkinstalldirs'
  9. configure.ac: installing `./missing'
  10. Makefile.am: installing `./depcomp'
  11. $ gmake
  12. gmake: *** No targets specified and no makefile found.  Stop.
  13. $ lf
  14. ./              Makefile.in     config.h.in     depcomp@        missing@
  15. ../             aclocal.m4      configure*      hello.c         mkinstalldirs@
  16. Makefile.am     autom4te.cache/ configure.ac    install-sh@
  17. $ ./configure
  18. checking for a BSD-compatible install... /usr/bin/install -c
  19. checking whether build environment is sane... yes
  20. checking for gawk... gawk
  21. checking whether make sets $(MAKE)... yes
  22. checking for gcc... gcc
  23. checking for C compiler default output file name... a.out
  24. checking whether the C compiler works... yes
  25. checking whether we are cross compiling... no
  26. checking for suffix of executables...
  27. checking for suffix of object files... o
  28. checking whether we are using the GNU C compiler... yes
  29. checking whether gcc accepts -g... yes
  30. checking for gcc option to accept ISO C89... none needed
  31. checking for style of include used by make... GNU
  32. checking dependency style of gcc... gcc3
  33. checking how to run the C preprocessor... gcc -E
  34. checking for grep that handles long lines and -e... /usr/bin/grep
  35. checking for egrep... /usr/bin/grep -E
  36. checking for ANSI C header files... yes
  37. checking for sys/types.h... yes
  38. checking for sys/stat.h... yes
  39. checking for stdlib.h... yes
  40. checking for string.h... yes
  41. checking for memory.h... yes
  42. checking for strings.h... yes
  43. checking for inttypes.h... yes
  44. checking for stdint.h... yes
  45. checking for unistd.h... yes
  46. checking stdio.h usability... yes
  47. checking stdio.h presence... yes
  48. checking for stdio.h... yes
  49. configure: creating ./config.status
  50. config.status: creating Makefile
  51. config.status: WARNING:  Makefile.in seems to ignore the --datarootdir setting
  52. config.status: creating config.h
  53. config.status: executing depfiles commands
  54. $ gmake
  55. gmake  all-am
  56. gmake[1]: Entering directory `/usr/home/mymtom/src/play/automake/hello-1.0'
  57. source='hello.c' object='hello.o' libtool=no \
  58.         depfile='.deps/hello.Po' tmpdepfile='.deps/hello.TPo' \
  59.         depmode=gcc3 /usr/local/bin/bash ./depcomp \
  60.         gcc -DHAVE_CONFIG_H -I. -I. -I.     -g -O2 -c `test -f 'hello.c' || echo './'`hello.c
  61. gcc  -g -O2   -o hello  hello.o  
  62. gmake[1]: Leaving directory `/usr/home/mymtom/src/play/automake/hello-1.0'
  63. $ gmake dist
  64. { test ! -d hello-1.0 || { find hello-1.0 -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr hello-1.0; }; }
  65. mkdir hello-1.0
  66. find hello-1.0 -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
  67.           ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  68.           ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  69.           ! -type d ! -perm -444 -exec /usr/local/bin/bash /usr/home/mymtom/src/play/automake/hello-1.0/install-sh -c -m a+r {} {} \; \
  70.         || chmod -R a+r hello-1.0
  71. /usr/local/bin/bash /usr/home/mymtom/src/play/automake/hello-1.0/missing --run tar chof - hello-1.0 | GZIP=--best gzip -c >hello-1.0.tar.gz
  72. { test ! -d hello-1.0 || { find hello-1.0 -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr hello-1.0; }; }
  73. $ ls -F
  74. Makefile                config.log              hello.c
  75. Makefile.am             config.status*          hello.o
  76. Makefile.in             configure*              install-sh@
  77. aclocal.m4              configure.ac            missing@
  78. autom4te.cache/         depcomp@                mkinstalldirs@
  79. config.h                hello*                  stamp-h1
  80. config.h.in             hello-1.0.tar.gz
  81. $
復(fù)制代碼

hello-1.0.tar.gz

613 Bytes, 下載次數(shù): 44

評分

參與人數(shù) 1可用積分 +9 收起 理由
MMMIX + 9 我很贊同

查看全部評分

您需要登錄后才可以回帖 登錄 | 注冊

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報(bào)專區(qū)
中國互聯(lián)網(wǎng)協(xié)會會員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP