You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
486 B
Makefile
19 lines
486 B
Makefile
5 years ago
|
#/usr/bin/make
|
||
|
SRC = $(DESTDIR)/usr/src
|
||
|
SHARE = $(DESTDIR)/usr/share/$(NAME)-dkms
|
||
|
|
||
|
all:
|
||
|
|
||
|
clean:
|
||
|
|
||
|
install:
|
||
|
|
||
|
#tarball, possibly with binaries
|
||
|
ifeq ("$(wildcard $(NAME)-$(VERSION).dkms.tar.gz)", "$(NAME)-$(VERSION).dkms.tar.gz")
|
||
|
tar zxvf "$(NAME)-$(VERSION).dkms.tar.gz"
|
||
|
install -d "$(DESTDIR)/lib/modules/$(KVER)/updates/dkms/"
|
||
|
install -m 644 dkms_main_tree/$(KVER)/$(KARCH)/module/*.ko "$(DESTDIR)/lib/modules/$(KVER)/updates/dkms/"
|
||
|
rm -rf dkms_main_tree/ dkms_binaries_only/
|
||
|
endif
|
||
|
|