rules 380 Bytes
Newer Older
1
2
3
4
#!/usr/bin/make -f

export V=1

5
6
7
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
LIB_DIR := /usr/lib/$(DEB_HOST_MULTIARCH)

8
9
10
_dhopts := --with autoreconf

_configure := \
11
  --disable-libipq \
12
  --enable-devel \
13
14
15
  --libdir=$(LIB_DIR) \
  --with-xtlibdir=$(LIB_DIR)/xtables

16
17
18
19
20
21

%:
	dh $@ $(_dhopts)

override_dh_auto_configure:
	dh_auto_configure -- $(_configure)