mirror of
https://github.com/corundum/corundum.git
synced 2025-02-06 08:38:23 +08:00
12 lines
216 B
Makefile
12 lines
216 B
Makefile
|
|
# object files to build
|
|
obj-m += example.o
|
|
example-objs += example_driver.o
|
|
|
|
all:
|
|
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
|
|
|
|
clean:
|
|
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
|
|