mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-14 14:55:41 +00:00
93c005929f
or (in my case) no longer feel that oversight is necessary.
18 lines
245 B
Makefile
18 lines
245 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/streams
|
|
|
|
KMOD= streams
|
|
SRCS= streams.c
|
|
|
|
EXPORT_SYMS= svr4_str_initialized \
|
|
svr4_stream_get \
|
|
svr4_delete_socket
|
|
|
|
.if defined(DEBUG)
|
|
CFLAGS+= -DDEBUG_SVR4
|
|
.endif
|
|
CFLAGS+= -O
|
|
|
|
.include <bsd.kmod.mk>
|