David van Moolenbroek 52be5c0afb libvtreefs: API changes/extensions, part 2
- rename start_vtreefs to run_vtreefs, since the function returns upon
  termination these days;
- add get_inode_slots function to retrieve the number of indexed slots;
- add support for extra per-inode data for arbitrary storage.

Change-Id: If2d365d7b478a1cecc9e20fb2b3e70c1a1cf7243
2014-11-12 12:13:43 +00:00

22 lines
223 B
Makefile

# Makefile for libvtreefs
NOGCCERROR=yes
CPPFLAGS+= -D_MINIX_SYSTEM
LIB= vtreefs
SRCS= \
extra.c \
file.c \
inode.c \
link.c \
mount.c \
path.c \
sdbm.c \
stadir.c \
table.c \
vtreefs.c
.include <bsd.lib.mk>