mirror of
https://github.com/stefanberger/libtpms
synced 2026-01-14 11:47:48 +00:00
Add debian build files to enable building of Debian package using for example debuild -b or dpkg-buildpackage -us -uc Extend the .gitignore. The debhelper checks show warnings and errors that will need to be addressed some other time. For some I don't know how to solve them at the moment. Signed-off-by: Stefan Berger <stefanb@linux.watson.ibm.com>
12 lines
202 B
Makefile
Executable File
12 lines
202 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
|
|
|
%:
|
|
dh $@ --parallel
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --with-openssl
|
|
|
|
override_dh_usrlocal:
|