mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2026-06-11 18:38:07 +00:00
9ce599cb4b
This is needed for SPI devices
22 lines
429 B
Makefile
Executable File
22 lines
429 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DPKG_GENSYMBOLS_CHECK_LEVEL = 2
|
|
|
|
BUILDDIR = $(CURDIR)/obj-$(DEB_HOST_GNU_TYPE)
|
|
|
|
# Configuration arguments
|
|
CONFIG_ARGS = \
|
|
-Dudev_hwdb_dir=/lib/udev/hwdb.d \
|
|
-Dudev_rules_dir=/lib/udev/rules.d \
|
|
-Ddrivers=all \
|
|
-Dgtk-examples=false
|
|
|
|
%:
|
|
dh $@ --with gir
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- $(CONFIG_ARGS)
|
|
|
|
override_dh_auto_test:
|
|
dh_auto_test -- -C $(BUILDDIR) --timeout-multiplier 5
|