13 lines
379 B
Plaintext
13 lines
379 B
Plaintext
# Process this file with autoconf to produce a configure script:
|
|
# autoreconf -vi
|
|
# Public domain. Originally written by Ineiev, 2023.
|
|
AC_INIT([GNU C Intro And Reference], [0.0], [c-manual@gnu.org],
|
|
[c-intro-and_ref], [https://www.gnu.org/software/c-intro-and-ref/]
|
|
)
|
|
|
|
AC_PREREQ([2.65])
|
|
AC_CONFIG_SRCDIR([c.texi])
|
|
AM_INIT_AUTOMAKE([1.11])
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|