mirror of
https://github.com/ioacademy-jikim/device_driver
synced 2025-06-07 07:56:08 +00:00
11 lines
161 B
Makefile
11 lines
161 B
Makefile
obj-m = misc_dev.o
|
|
|
|
KDIR = /usr/src/tegra
|
|
PWD = $(shell pwd)
|
|
|
|
default:
|
|
make -C $(KDIR) SUBDIRS=$(PWD) modules
|
|
|
|
clean:
|
|
make -C $(KDIR) SUBDIRS=$(PWD) clean
|