1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
include /usr/share/dpkg/default.mk
SRCDIR = debian/tmp/usr/src/$(DEB_SOURCE)-$(DEB_VERSION_UPSTREAM)
%:
dh $@
override_dh_auto_configure:
override_dh_auto_build:
override_dh_auto_clean:
override_dh_auto_install:
install -d $(SRCDIR)
install -m 0644 *.[ch] Makefile $(SRCDIR)
install -d $(SRCDIR)/crypto
install -m 0644 crypto/*.[ch] $(SRCDIR)/crypto
override_dh_dkms:
dh_dkms -V
|