blob: 48edfcf85145f45cbeb2a27b97c644d813abad62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/make -f
DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
ifeq ($(DEB_BUILD_ARCH),amd64)
DEB_SETUP_GHC_CONFIGURE_ARGS = -faesni
endif
DEB_ENABLE_TESTS = yes
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
|