autotools-project/configure.ac

70 lines
1003 B
Plaintext
Raw Normal View History

2022-06-11 10:53:45 +00:00
############################
# Specify program versions #
############################
2022-06-07 01:09:06 +00:00
AC_PREREQ([2.68])
2022-06-11 10:53:45 +00:00
LT_PREREQ([2.4.6])
#######################
# Initialize Autoconf #
#######################
2022-06-07 01:09:06 +00:00
AC_INIT([autotools-project],
[0.0.0],
[https://github.com/tailix/autotools-project/issues],
[autotools-project],
[https://github.com/tailix/autotools-project])
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
2022-06-11 10:53:45 +00:00
AC_CONFIG_MACRO_DIRS([m4])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_SRCDIR([src/main.c])
2022-06-07 01:09:06 +00:00
AC_CONFIG_FILES([
Makefile
2022-06-07 04:10:53 +00:00
include/Makefile
2022-06-07 01:09:06 +00:00
])
2022-06-11 10:53:45 +00:00
#######################
# Initialize Automake #
#######################
AM_INIT_AUTOMAKE([1.16 subdir-objects])
##############
# Run checks #
##############
2022-06-07 01:09:06 +00:00
AC_LANG([C])
AM_PROG_AR
AM_PROG_AS
AC_PROG_CC
AC_PROG_CC_C99
AC_C_INLINE
AC_CHECK_HEADER_STDBOOL
AC_CHECK_HEADERS([stdarg.h stddef.h stdint.h])
2022-06-11 10:53:45 +00:00
######################
# Initialize Libtool #
######################
LT_INIT([disable-shared])
##########
# Finish #
##########
2022-06-07 01:09:06 +00:00
AC_OUTPUT