Merge commit '163d0ea85b99a2c581b1f861bf9445a9a14bfc6f'
[osmocom-bb.git] / src / host / layer23 / configure.ac
1 dnl Process this file with autoconf to produce a configure script
2 AC_INIT
3
4 AM_INIT_AUTOMAKE(layer23, 0.0.0)
5
6 dnl kernel style compile messages
7 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
8
9 dnl checks for programs
10 AC_PROG_MAKE_SET
11 AC_PROG_CC
12 AC_PROG_INSTALL
13 AC_PROG_RANLIB
14
15 dnl checks for libraries
16 PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore)
17
18 dnl checks for header files
19 AC_HEADER_STDC
20
21 dnl Checks for typedefs, structures and compiler characteristics
22
23 AC_OUTPUT(
24     src/Makefile
25     include/Makefile
26     include/osmocom/Makefile
27     Makefile)