1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-08-08 17:22:05 +03:00
Files
Bruno Haible a3c4f3ffbe Add simple examples.
* examples: New directory.
2021-12-15 19:59:01 +01:00

19 lines
296 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([src/hello.c])
AM_INIT_AUTOMAKE
AC_CONFIG_HEADERS([config.h])
AC_PROG_CC
gl_EARLY
gl_INIT
AC_CONFIG_FILES([Makefile])
AC_OUTPUT