17 lines
424 B
Makefile
Executable File
17 lines
424 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
export DH_VERBOSE = 1
|
|
export DEB_BUILD_MAINT_OPTIONS=qa=-all sanitize=-all hardening=-all reproducible=-all parallel=1
|
|
unexport LANG
|
|
export LC_ALL=C
|
|
%:
|
|
dh $@ --no-parallel
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build -- debuild-kbupd-enclave-build
|
|
|
|
override_dh_auto_install:
|
|
make DESTDIR=debian/kbupd-enclave debuild-kbupd-enclave-install
|
|
|
|
override_dh_auto_test:
|
|
dh_auto_build -- debuild-kbupd-enclave-test
|