Files
blis/debian/rules
Nico Schlömer 6e25e758b4 Debian config (#206)
* add debian config

* correct wording in the README
2018-05-15 07:03:20 -05:00

16 lines
330 B
Makefile
Executable File

#!/usr/bin/make -f
DEB_HOST_MULTIARCH?=$(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
ifeq ($(DEB_HOST_MULTIARCH),x86_64-linux-gnu)
CONFIG=x86_64
else
CONFIG=generic
endif
%:
dh $@
override_dh_auto_configure:
./configure --prefix=/usr --libdir=/usr/lib/$(DEB_HOST_MULTIARCH) --enable-static --enable-shared $(CONFIG)