summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 31da045aae10713617067698d7175b6d74ca9942 (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
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

ifeq ($(DEB_BUILD_ARCH_OS), kfreebsd)
	DO_TEST = no
endif

override_dh_auto_configure:
	dh_auto_configure -- --with-system-pgm

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
ifneq ($(DO_TEST), no)
	dh_auto_test
else
	-dh_auto_test
endif
endif

override_dh_strip:
	dh_strip --dbg-package=libzmq3-dbg

%:
	dh $@ --with=autoreconf

.PHONY: override_dh_auto_configure override_dh_strip