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

1234567891011121314
  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. all: filejoinfs
  7. filejoinfs: filejoinfs.c
  8. ${CC} ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} `pkg-config fuse --cflags --libs` filejoinfs.c -lfuse -o $@
  9. clean:
  10. rm filejoinfs