ifneq ($(KERNELRELEASE),)
obj-m := rtfs.o
rtfs-objs := block.o file.o inode.o super.o
else
KDIR    := /lib/modules/$(shell uname -r)/build
PWD     := $(shell pwd)
modules modules_install clean:
	$(MAKE) -C $(KDIR) M=$(PWD) $@
endif
