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 359B

1234567891011121314151617
  1. CFLAGS_DBG?= -ggdb
  2. CFLAGS_OPT?= -O2
  3. CFLAGS_WARN?= -Wall -Wextra -Wshadow -Wformat-security
  4. CFLAGS?= ${CFLAGS_DBG} ${CFLAGS_OPT}
  5. CFLAGS+= ${CFLAGS_WARN}
  6. CFLAGS+= `pkg-config --cflags fuse`
  7. LIBS+= `pkg-config --libs fuse`
  8. all: filejoinfs
  9. filejoinfs: filejoinfs.c
  10. ${CC} ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ filejoinfs.c ${LIBS}
  11. clean:
  12. rm -f filejoinfs