voidfs/Makefile
nganhkhoa 9b6c341349 working vfs
hardcoded structure
- mount
- list directory
- read a file
2024-10-30 15:18:26 +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