1be98eecaa227a85656349107722eaf0190a9eb3
[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 PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty)
18
19 dnl checks for header files
20 AC_HEADER_STDC
21
22 dnl Checks for typedefs, structures and compiler characteristics
23
24 AC_OUTPUT(
25     src/Makefile
26     src/common/Makefile
27     src/misc/Makefile
28     src/mobile/Makefile
29     include/Makefile
30     include/osmocom/Makefile
31     include/osmocom/bb/Makefile
32     include/osmocom/bb/common/Makefile
33     include/osmocom/bb/misc/Makefile
34     include/osmocom/bb/mobile/Makefile
35     Makefile)