minix/servers/inet/Makefile
Cristiano Giuffrida 65ef539739 Driver mapping refactory.
VFS CHANGES:
- dmap table no longer statically initialized in VFS
- Dropped FSSIGNON svrctl call no longer used by INET

INET CHANGES:
- INET announces its presence to VFS just like any other driver

RS CHANGES:
- The boot image dev table contains all the data to initialize VFS' dmap table
- RS interface supports asynchronous up and update operations now
- RS interface extended to support driver style and flags
2010-04-09 21:56:44 +00:00

25 lines
483 B
Makefile

# Makefile for inet.
PROG= inet
SRCS= buf.c clock.c inet.c inet_config.c \
mnx_eth.c mq.c qp.c sr.c \
udp.c arp.c eth.c event.c \
icmp.c io.c ip.c ip_ioctl.c \
ip_lib.c ip_read.c ip_write.c \
ipr.c rand256.c tcp.c tcp_lib.c \
tcp_recv.c tcp_send.c ip_eth.c \
ip_ps.c psip.c \
queryparam.c sha2.c version.c
.PATH: ${.CURDIR}/generic
DPADD+= ${LIBDRIVER} ${LIBSYS}
LDADD+= -ldriver -lsys
MAN=
BINDIR?= /usr/sbin
CPPFLAGS+= -I${.CURDIR} -D_MINIX
.include <minix.prog.mk>