mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-16 00:34:39 +08:00
26 lines
493 B
Bash
Executable File
26 lines
493 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f config.status ]; then
|
|
make maintainer-clean
|
|
fi
|
|
|
|
./bootstrap && \
|
|
./configure --enable-maintainer-mode \
|
|
--enable-debug \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--libexecdir=/lib \
|
|
--enable-all \
|
|
--enable-glib \
|
|
--enable-headset \
|
|
--enable-network \
|
|
--enable-input \
|
|
--enable-echo \
|
|
--disable-configfiles \
|
|
--disable-initscripts \
|
|
--disable-pcmciarules \
|
|
--disable-sdpd \
|
|
--disable-cups $*
|