mirror of
https://github.com/amd/blis.git
synced 2026-05-11 09:39:59 +00:00
16 lines
330 B
Makefile
Executable File
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)
|