]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/librt/Makefile
Merge ACPICA 20150717.
[FreeBSD/FreeBSD.git] / lib / librt / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 LIB=rt
6 SHLIB_MAJOR= 1
7 CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}
8 .ifndef NO_THREAD_STACK_UNWIND
9 CFLAGS+=-fexceptions
10 .endif
11 CFLAGS+=-Winline -Wall
12 LIBADD= pthread
13
14 WARNS?= 2
15
16 SRCS+= aio.c mq.c sigev_thread.c timer.c
17
18 PRECIOUSLIB=
19
20 VERSION_MAP=    ${.CURDIR}/Version.map
21
22 .if ${MK_TESTS} != "no"
23 SUBDIR+=        tests
24 .endif
25
26 .include <bsd.lib.mk>