Files
m68k-bdm/m68k/driver/linux-2.6/Makefile
Bernd Mueller adfd70813f initial push
2026-06-17 13:44:30 +02:00

15 lines
234 B
Makefile

ifneq ($(KERNELRELEASE),)
obj-m := bdm.o
else
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
install:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules_install
endif