blob: 00fd74227d6830bf3fc9ec4606a7ddb9e7f34fc1 [file] [log] [blame]
Murulidhar Nataraju4050a832017-03-31 08:29:48 -05001# Initialization
2AC_PREREQ([2.69])
3AC_INIT([openpower-sbe-interface],[1.0],[https://github.com/openbmc/openpower-sbe-interface/issues])
4AC_CONFIG_SRCDIR([sbe_interfaces.cpp])
5AC_CONFIG_HEADERS([config.h])
6AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
7AM_SILENT_RULES([yes])
8
9
10# Checks for programs.
11AC_PROG_CXX
12AM_PROG_AR
13
14LT_INIT
15
16# Checks for typedefs, structures, and compiler characteristics.
17AX_CXX_COMPILE_STDCXX_14([noext])
18AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CFLAGS])
19AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
20
21# Create configured output
22AC_CONFIG_FILES([Makefile])
23AC_OUTPUT