
- move primary I/O buffer into vtreefs; change read hook API; - add hooks for write, truncate, symlink, mknod, unlink, chmod/chown; - modernize message_hook; - change procfs, devman, gpio accordingly; Change-Id: I9f0669e41195efa3253032e95d93f0a78e9d68d6
21 lines
212 B
Makefile
21 lines
212 B
Makefile
# Makefile for libvtreefs
|
|
|
|
NOGCCERROR=yes
|
|
|
|
CPPFLAGS+= -D_MINIX_SYSTEM
|
|
|
|
LIB= vtreefs
|
|
|
|
SRCS= \
|
|
file.c \
|
|
inode.c \
|
|
link.c \
|
|
mount.c \
|
|
path.c \
|
|
sdbm.c \
|
|
stadir.c \
|
|
table.c \
|
|
vtreefs.c
|
|
|
|
.include <bsd.lib.mk>
|