summaryrefslogtreecommitdiffstats
path: root/configure.ac
blob: 51c08669c7988dba2d1ec160037ed91ff58db31d (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
28
29
30
# Inital configuration

AC_PREREQ(2.61)

AC_INIT([usbmuxd], [0.1.3], [nikias@gmx.li])
AM_INIT_AUTOMAKE([-Wall -Werror foreign dist-bzip2])

AC_CONFIG_HEADERS([config.h])

# Check for programs

AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_LIBTOOL
AC_PROG_INSTALL

# Check for libraries

PKG_CHECK_MODULES(libusb, libusb >= 0.1.12)

# Output files

AC_OUTPUT([
Makefile
src/Makefile
tools/Makefile
udev/85-usbmuxd.rules
udev/Makefile
libusbmuxd.pc
])