mirror of
https://github.com/ioacademy-jikim/kernel
synced 2025-06-07 07:56:14 +00:00
10 lines
180 B
Makefile
10 lines
180 B
Makefile
obj-m = my_interrupt.o
|
|
KERNEL = /root/tegra
|
|
PWD = $(shell pwd)
|
|
|
|
default :
|
|
$(MAKE) -C $(KERNEL) SUBDIRS=$(PWD) modules
|
|
|
|
clean :
|
|
$(MAKE) -C $(KERNEL) SUBDIRS=$(PWD) clean
|