Add easier way to use DKMS
parent
8c0c5aa863
commit
4f73396ba7
@ -0,0 +1,24 @@
|
|||||||
|
modname := bbswitch
|
||||||
|
DKMS := dkms
|
||||||
|
modver := $(shell awk -F'"' '/MODULE_VERSION/{print $$2}' < bbswitch.c)
|
||||||
|
|
||||||
|
# directory in which generated files are stored
|
||||||
|
DKMS_DEST := /usr/src/$(modname)-$(modver)
|
||||||
|
|
||||||
|
all: install
|
||||||
|
|
||||||
|
src_install:
|
||||||
|
mkdir -p '$(DKMS_DEST)'
|
||||||
|
cp Makefile bbswitch.c '$(DKMS_DEST)'
|
||||||
|
sed 's/#MODULE_VERSION#/$(modver)/' dkms/dkms.conf > '$(DKMS_DEST)/dkms.conf'
|
||||||
|
|
||||||
|
build: src_install
|
||||||
|
$(DKMS) build 'bbswitch/$(modver)'
|
||||||
|
|
||||||
|
install: build
|
||||||
|
$(DKMS) install 'bbswitch/$(modver)'
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
$(DKMS) remove bbswitch/$(modver) --all
|
||||||
|
|
||||||
|
.PHONY: all src_install build install uninstall
|
Loading…
Reference in New Issue