1
0
mirror of https://github.com/ioacademy-jikim/kernel.git synced 2026-08-11 08:23:02 +00:00
Files
Your Name bd45826384 7
2017-11-13 16:58:34 +09:00

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