1e07186caf
- move VFS calls to a separate source file; - solve a few subtle bugs, mostly in error handling; - simplify debug reporting code; - make a few definitions more independent; - restyle to something closer to KNF. Change-Id: I7b0537adfccac8b92b5cc3e78dac9f5ce3c79f03
12 lines
212 B
Makefile
12 lines
212 B
Makefile
# Makefile for the UNIX Domain Sockets driver (UDS)
|
|
PROG= uds
|
|
SRCS= uds.c ioc_uds.c vfs_uds.c
|
|
|
|
DPADD+= ${LIBCHARDRIVER} ${LIBSYS}
|
|
LDADD+= -lchardriver -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include <minix.service.mk>
|