mirror of
https://github.com/ioacademy-jikim/kernel.git
synced 2026-08-11 16:32:59 +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
|