9 lines
176 B
Makefile
9 lines
176 B
Makefile
|
# Makefile for the UNIX Domain Sockets driver (UDS)
|
||
|
PROG= uds
|
||
|
SRCS= uds.c ioc_uds.c
|
||
|
|
||
|
DPADD+= ${LIBCHARDRIVER} ${LIBSYS}
|
||
|
LDADD+= -lchardriver -lsys
|
||
|
|
||
|
.include <minix.service.mk>
|