mirror of
https://github.com/fairwaves/UHD-Fairwaves.git
synced 2025-11-02 21:13:14 +00:00
22 lines
484 B
Makefile
Executable File
22 lines
484 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
|
export DEB_HOST_MULTIARCH
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
# This has to be exported to make some magic below work.
|
|
export DH_OPTIONS
|
|
|
|
|
|
%:
|
|
dh $@ --buildsystem=cmake --parallel --sourcedirectory=host
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- -DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)"
|
|
|
|
override_dh_strip:
|
|
dh_strip --dbg-package=umtrx-dbg
|