eudyptula/task_1/Makefile

10 lines
173 B
Makefile
Raw Normal View History

2023-01-25 12:07:38 +00:00
obj-m += hello.o
2023-01-23 00:16:45 +00:00
PWD := $(CURDIR)
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean