Changes between Version 6 and Version 7 of shunfa/2011/0729


Ignore:
Timestamp:
Jul 29, 2011, 4:46:22 PM (13 years ago)
Author:
shunfa
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • shunfa/2011/0729

    v6 v7  
    173173=== 第四階段:auto make ===
    174174 * [http://ftp.gnu.org/gnu/automake/automake-1.11.1.tar.gz 下載]
     175 * 新增Makefile.am
     176{{{
     177#!text
     178bin_PROGRAMS=hello
     179hello_SOURCES=hello.c
     180}}}
     181 * 執行
     182{{{
     183$ automake
     184configure.ac: no proper invocation of AM_INIT_AUTOMAKE was found.
     185configure.ac: You should verify that configure.ac invokes AM_INIT_AUTOMAKE,
     186configure.ac: that aclocal.m4 is present in the top-level directory,
     187configure.ac: and that aclocal.m4 was recently regenerated (using aclocal).
     188Makefile.am: required file `./INSTALL' not found
     189Makefile.am:   `automake --add-missing' can install `INSTALL'
     190Makefile.am: required file `./NEWS' not found
     191Makefile.am: required file `./README' not found
     192Makefile.am: required file `./AUTHORS' not found
     193Makefile.am: required file `./ChangeLog' not found
     194Makefile.am: required file `./COPYING' not found
     195Makefile.am:   `automake --add-missing' can install `COPYING'
     196Makefile.am: required file `./depcomp' not found
     197Makefile.am:   `automake --add-missing' can install `depcomp'
     198/usr/local/share/automake-1.11/am/depend2.am: am__fastdepCC does not appear in AM_CONDITIONAL
     199/usr/local/share/automake-1.11/am/depend2.am:   The usual way to define `am__fastdepCC' is to add `AC_PROG_CC'
     200/usr/local/share/automake-1.11/am/depend2.am:   to `configure.ac' and run `aclocal' and `autoconf' again.
     201/usr/local/share/automake-1.11/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL
     202/usr/local/share/automake-1.11/am/depend2.am:   The usual way to define `AMDEP' is to add one of the compiler tests
     203/usr/local/share/automake-1.11/am/depend2.am:     AC_PROG_CC, AC_PROG_CXX, AC_PROG_CXX, AC_PROG_OBJC,
     204/usr/local/share/automake-1.11/am/depend2.am:     AM_PROG_AS, AM_PROG_GCJ, AM_PROG_UPC
     205/usr/local/share/automake-1.11/am/depend2.am:   to `configure.ac' and run `aclocal' and `autoconf' again.
     206}}}
     207
     208 * fix error
     209 * done