2008年5月31日土曜日

【道具箱】第3章 make, 第4章 Autoconf


  • 入っているautoconfのバージョンをしらべたら、2.61だった。いろいろ違うかも?
  • ああ、、、全然違う。autoscanの結果。

    # -*- 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([hello.c])
    AC_CONFIG_HEADER([config.h])

    # Checks for programs.
    AC_PROG_CC
    AC_PROG_INSTALL

    # Checks for libraries.

    # Checks for header files.

    # Checks for typedefs, structures, and compiler characteristics.

    # Checks for library functions.

    AC_CONFIG_FILES([Makefile])
    AC_OUTPUT

  • でも、なんとなく、大丈夫。
  • configure.inの詳細は、雰囲気だけみとくことにした。

0 件のコメント: