12 lines
378 B
Plaintext
12 lines
378 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
|