blob: 446df9c64592343738862b2eacd60d8f5d9d168e [file] [log] [blame]
Richard Marian Thomaiyar216f2132018-06-12 19:20:48 +05301# Initialization
2AC_PREREQ([2.69])
3AC_INIT([pam_ipmi], [0.1], [https://github.com/openbmc/pam-ipmi/issues])
4AC_CONFIG_HEADERS([config.h])
5AM_INIT_AUTOMAKE([subdir-objects -Wall foreign dist-xz])
6AM_SILENT_RULES([yes])
7
8AC_SUBST(PACKAGE)
9AC_SUBST(VERSION)
10
11# Checks for programs
Patrick Venture6987da92018-11-23 08:47:25 -080012AM_PROG_AR
Richard Marian Thomaiyar216f2132018-06-12 19:20:48 +053013AC_PROG_CC
14AC_PROG_INSTALL
15AC_PROG_MAKE_SET
16
17# Checks for library functions.
18LT_INIT # Removes 'unrecognized options: --with-libtool-sysroot
19
20# Create configured output
21AC_CONFIG_FILES([Makefile])
22AC_OUTPUT