rules 388 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/make -f

export V=1

_dhopts := --with autoreconf

_shlibdeps := \
  -a -Xlib/xtables \
  -l$(CURDIR)/debian/build/extensions/.libs

_configure := \
12
  --disable-libipq \
13
14
15
16
17
18
19
20
21
22
23
24
  --enable-devel \
  --libdir=/lib \
  --with-xtlibdir=/lib/xtables

%:
	dh $@ $(_dhopts)

override_dh_shlibdeps:
	dh_shlibdeps $(_shlibdeps)

override_dh_auto_configure:
	dh_auto_configure -- $(_configure)