freebsd-dev/lib/librt/Makefile
David Xu 4acaec8fc3 Bring in my initial version of POSIX realtime extension library.
Current the library implements mqueue, timer and aio with SIGEV_THREAD
notification supported.

Earlier version reviewed by: deischen
2006-03-01 06:37:34 +00:00

16 lines
217 B
Makefile

# $FreeBSD$
LIB=rt
SHLIB_MAJOR= 1
CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}
CFLAGS+=-Winline -Wall -g
#MAN= libthr.3
NO_MAN=yes
SRCS+= aio.c mq.c sigev_thread.c timer.c
PRECIOUSLIB=
.include <bsd.lib.mk>