Newer
Older
linux_kernel_hacking / 1_Livepatch / 1.0_livepatch_sample / Makefile
@Harvey Phillips Harvey Phillips on 4 Jun 2020 183 bytes livepatch sample
obj-m := livepatch-sample.o
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)

default:
	$(MAKE) -C $(KDIR) M=$(PWD) modules

clean:
	$(MAKE) -C $(KDIR) M=$(PWD) clean