1
0
mirror of https://github.com/ioacademy-jikim/kernel synced 2025-06-07 07:56:14 +00:00
kernel/01_day/Makefile
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