#!/usr/bin/make -f

#export DH_VERBOSE=1

include /usr/share/dpkg/default.mk

# Enable all hardening features as Snort is a network "listener" of sorts
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

ifeq (armel, $(DEB_HOST_ARCH))
	export DEB_LDFLAGS_MAINT_APPEND =  -Wl,--no-as-needed -Wl,-latomic -Wl,--as-needed
endif

%:
	dh $@ 

override_dh_auto_test-indep:

