You've already forked bcmdhd-dkms
mirror of
https://github.com/armbian/bcmdhd-dkms.git
synced 2026-01-06 11:09:11 -08:00
23 lines
449 B
Makefile
Executable File
23 lines
449 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
include /usr/share/dpkg/pkg-info.mk
|
|
include /usr/share/dpkg/architecture.mk
|
|
|
|
export DEB_CFLAGS_MAINT_APPEND = -pthread
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_install:
|
|
DEB_VERSION=$(DEB_VERSION) dh_install --exclude=*.ko --exclude=*.a --exclude=*.swp --exclude=*.o \
|
|
--exclude=.gitignore
|
|
|
|
override_dh_shlibdeps:
|
|
dh_shlibdeps -l/lib/aarch64-linux-gnu/
|
|
|
|
override_dh_dkms:
|
|
dh_dkms -V $(DEB_VERSION)
|
|
|
|
override_dh_builddeb:
|
|
dh_builddeb -- -Zxz
|