summaryrefslogtreecommitdiffstats
path: root/configure.in
blob: 3176b1dc8f6e008cb1b7058714a10ff447aaf098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
dnl
dnl  $Id$
dnl
dnl Process this file with autoconf to produce a configure script.
dnl

AC_PREREQ(2.50)
AC_INIT()

AM_INIT_AUTOMAKE(bluez-libs, 2.6)

AM_MAINTAINER_MODE

AC_PREFIX_DEFAULT(/usr)

CFLAGS="-Wall -g -O2"

AC_LANG_C

AC_PROG_CC
AC_PROG_INSTALL

m4_ifdef([AC_LIBTOOL_TAGS], [AC_LIBTOOL_TAGS([])])

AC_PROG_LIBTOOL

AC_OUTPUT(Makefile include/Makefile src/Makefile)