eudyptula/task_01/Makefile

10 lines
173 B
Makefile
Raw Normal View History

2023-01-25 13:07:38 +01:00
obj-m += hello.o
2023-01-23 01:16:45 +01: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