mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-07-24 07:20:38 -04:00
9 lines
199 B
Makefile
9 lines
199 B
Makefile
obj-m += eudyptula_1.o
|
|
KERNEL_VER ?= $(shell uname -r)
|
|
KERNEL_PATH ?= /lib/modules/$(KERNEL_VER)/build
|
|
|
|
all:
|
|
make -C $(KERNEL_PATH) M=$(PWD) modules
|
|
|
|
clean:
|
|
make -C $(KERNEL_PATH) M=$(PWD) clean
|