A small, insignificant adjustment.
[C_programing_practice.git] / configure.ac
blob74b745ca3a8b812e7a96cf4d86ce5009f773d6f8
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ([2.65])
5 AC_INIT([C_programing_practice], [0.0.5], [darklinkxxxx@gmail.com])
6 AC_CONFIG_SRCDIR([src/hello-world/hello.c])
7 AC_CONFIG_HEADERS([config.h])
9 # Automake initialization
10 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
12 # Checks for programs.
13 AC_PROG_CC
15 # Checks for libraries.
17 # Checks for header files.
18 AC_CHECK_HEADERS([unistd.h])
20 # Checks for typedefs, structures, and compiler characteristics.
21 AC_HEADER_STDBOOL
23 # Checks for library functions.
25 AC_CONFIG_FILES([Makefile
26                  src/Makefile
27                  src/arrays/Makefile
28                  src/command-line/Makefile
29                  src/functions/Makefile
30                  src/hello-world/Makefile
31                  src/io/Makefile
32                  src/loops/Makefile
33                  src/minimalistic-c-program/Makefile
34                  src/practical-uses/Makefile])
35 AC_OUTPUT