freebsd-dev/lib/librt/Makefile

27 lines
381 B
Makefile
Raw Normal View History

# $FreeBSD$
.include <src.opts.mk>
LIB=rt
SHLIB_MAJOR= 1
CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}
.ifndef NO_THREAD_STACK_UNWIND
CFLAGS+=-fexceptions
.endif
CFLAGS+=-Winline -Wall
LIBADD= pthread
WARNS?= 2
SRCS+= aio.c mq.c sigev_thread.c timer.c
PRECIOUSLIB=
2007-04-29 14:01:45 +00:00
VERSION_MAP= ${.CURDIR}/Version.map
.if ${MK_TESTS} != "no"
SUBDIR+= tests
.endif
.include <bsd.lib.mk>