Files
ak-lab-4/Makefile
T

19 lines
330 B
Makefile
Raw Permalink Normal View History

2024-11-12 18:00:14 +02:00
ifneq ($(KERNELRELEASE),)
# kbuild part of makefile
2024-12-01 18:58:07 +02:00
obj-m := hello1.o hello2.o
2024-12-17 20:56:26 +02:00
ccflags-y := -I$(obj)/inc -g
2024-11-12 18:00:14 +02:00
else
# normal makefile
KDIR ?= /lib/modules/`uname -r`/build
default:
$(MAKE) -C $(KDIR) M=$$PWD
2024-12-17 20:56:26 +02:00
cp hello1.ko hello1.ko.unstripped
$(CROSS_COMPILE)strip -g hello1.ko
2024-11-12 18:00:14 +02:00
clean:
$(MAKE) -C $(KDIR) M=$$PWD clean
2024-12-17 20:56:26 +02:00
2024-11-12 18:00:14 +02:00
endif