mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
17 lines
245 B
Makefile
17 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>
|