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.
vendor-reset/Makefile

21 lines
463 B
Makefile

USER := $(shell whoami)
KVER ?= $(shell uname -r)
KDIR ?= /lib/modules/$(KVER)/build
all: build
build:
$(MAKE) -C $(KDIR) M=$(PWD) modules
install:
$(MAKE) -C $(KDIR) M=$(PWD) INSTALL_MOD_PATH=$(INSTALL_MOD_PATH) modules_install
clean:
$(MAKE) -C $(KDIR) M=$(PWD) clean
load: all
grep -q '^vendor_reset' /proc/modules && sudo rmmod vendor_reset || true
sudo insmod ./vendor-reset.ko $(if $(NOHOOK),install_hook=no,)
.PHONY: userspace load all install