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
|
#!/usr/bin/make -f
include /usr/share/cdbs/1/class/autotools.mk
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/rules/patchsys-quilt.mk
DEB_CONFIGURE_EXTRA_FLAGS += \
--enable-dhclient \
--enable-ethernet \
--enable-loopback \
--enable-pie \
--enable-wifi \
--enable-ofono \
--enable-bluetooth \
--enable-udev \
--disable-polkit \
--enable-client \
$(NULL)
DEB_DH_INSTALLINIT_ARGS = --only-scripts
DEB_DH_MAKESHLIBS_ARGS_ALL := -X/usr/lib/connman/
pre-build:: bootstrap-stamp
bootstrap-stamp:
@echo "autotools bootstrapping ...";
./bootstrap;
touch $@
|