mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-09-11 11:50:52 +03:00
16 lines
303 B
Plaintext
16 lines
303 B
Plaintext
dnl This file is in the public domain.
|
|
dnl
|
|
dnl Configuration file - processed by autoconf.
|
|
|
|
AC_INIT([hello-c], [0])
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
AC_CONFIG_SRCDIR([hello.c])
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AC_PROG_CC
|
|
AC_CHECK_HEADERS([unistd.h])
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_CONFIG_FILES([m4/Makefile])
|
|
AC_OUTPUT
|