12 lines
199 B
Makefile
Executable File
12 lines
199 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
%:
|
|
dh $@ -- -B_build
|
|
|
|
override_dh_auto_test:
|
|
ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
|
|
xvfb-run ninja -C _build test
|
|
endif
|