voidfs/Makefile
nganhkhoa 85951ee78f working vfs
hardcoded structure with support for
- mount
- list directory
- read a file
2024-10-30 15:23:19 +07:00

10 lines
184 B
Makefile

obj-m += voidfs.o
all: voidfs
voidfs:
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) clean