ddeb562e1a
- simplify and repair UDS request handling state machine; - simplify interface used between internal modules; - implement missing support for nonblocking I/O; - fix select implementation; - clean up global variables. Change-Id: Ia82c5c6f05cc3f0a498efc9a26de14b1cde6eace
16 lines
302 B
Makefile
16 lines
302 B
Makefile
# Makefile for Pipe File System (PFS)
|
|
PROG= pfs
|
|
SRCS= open.c table.c inode.c main.c super.c link.c \
|
|
buffer.c read.c misc.c mount.c utility.c stadir.c \
|
|
uds.c dev_uds.c
|
|
|
|
DPADD+= ${LIBCHARDRIVER} ${LIBSYS}
|
|
LDADD+= -lchardriver -lsys
|
|
|
|
LDADD+= -lc
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include <minix.service.mk>
|