You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
378 B
11 lines
378 B
# 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
|
|
|