fjfs is FUSE module that implements virtual joining of multiple files as one. https://georgi.unixsol.org/programs/fjfs/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 200B

123456
  1. CFLAGS = -ggdb -Wall -Wextra -Wshadow -Wformat-security -O2
  2. all: filejoinfs
  3. filejoinfs: filejoinfs.c
  4. ${CC} ${CFLAGS} `pkg-config fuse --cflags --libs` filejoinfs.c -lfuse -o $@
  5. clean:
  6. rm filejoinfs