mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-09 08:56:15 +00:00
44 lines
950 B
Plaintext
44 lines
950 B
Plaintext
# Process this file with autoconf to produce a configure script.
|
|
|
|
# Prelude.
|
|
AC_PREREQ([2.59])
|
|
AC_INIT([Money], [0.3], [check-devel AT lists.sourceforge.net])
|
|
AM_PROG_AR
|
|
|
|
# unique source file --- primitive safety check
|
|
AC_CONFIG_SRCDIR([src/money.c])
|
|
|
|
# place to put some extra build scripts installed
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
|
|
# fairly severe build strictness
|
|
# change foreign to gnu or gnits to comply with gnu standards
|
|
AM_INIT_AUTOMAKE([-Wall -Werror foreign 1.11.2])
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_LIBTOOL
|
|
|
|
# Checks for libraries.
|
|
|
|
PKG_CHECK_MODULES([CHECK], [check >= 0.9.6])
|
|
AM_PROG_CC_C_O
|
|
|
|
# Checks for header files.
|
|
AC_HEADER_STDC
|
|
AC_CHECK_HEADERS([stdlib.h])
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
# Checks for library functions.
|
|
AC_FUNC_MALLOC
|
|
|
|
# Output files
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
AC_CONFIG_FILES([Makefile
|
|
src/Makefile
|
|
tests/Makefile])
|
|
|
|
AC_OUTPUT
|