Edit

kc3-lang/automake/doc/amhello/configure.ac

Branch :

  • Show log

    Commit

  • Author : Alexandre Duret-Lutz
    Date : 2006-08-19 13:28:25
    Hash : 1a0147fd
    Message : * doc/automake.texi (Autotools Introduction) New chapter. Thanks to Ben Pfaff and Ralf Wildenhues for comments. (Auxiliary Programs, Install, Dist, Third-Party Makefiles) (distcleancheck): More cross references. * doc/amhello/configure.ac, doc/amhello/README, doc/amhello/Makefile.am, doc/amhello/src/Makefile.am, doc/amhello/src/main.c: New files. * doc/Makefile.am (dist_noinst_DATA): Distribute them. ($(srcdir)/amhello-1.0.tar.gz): New rule. (dist_doc_DATA): Install amhello-1.0.tar.gz. * Makefile.am (SUBDIRS): Update comment.

  • doc/amhello/configure.ac
  • # Copyright (C) 2006 Free Software Foundation, Inc.
    # This configure.ac script is free software; the Free Software Foundation
    # gives unlimited permission to copy, distribute and modify it.
    
    AC_INIT([amhello], [1.0], [bug-automake@gnu.org])
    AM_INIT_AUTOMAKE([-Wall -Werror foreign])
    AC_PROG_CC
    AC_CONFIG_HEADERS([config.h])
    AC_CONFIG_FILES([
     Makefile
     src/Makefile
    ])
    AC_OUTPUT