]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - lib/libcxxrt/Makefile
MFC r347990:
[FreeBSD/stable/10.git] / lib / libcxxrt / Makefile
1 # $FreeBSD$
2
3 SRCDIR=         ${SRCTOP}/contrib/libcxxrt
4
5 SHLIB_MAJOR=    1
6 SHLIBDIR?=      /lib
7
8 .PATH: ${SRCDIR}
9
10 LIB=            cxxrt
11
12 SRCS+=          libelftc_dem_gnu3.c\
13                 terminate.cc\
14                 dynamic_cast.cc\
15                 memory.cc\
16                 auxhelper.cc\
17                 exception.cc\
18                 stdexcept.cc\
19                 typeinfo.cc\
20                 guard.cc
21
22 WARNS=          0
23 CFLAGS+=        -I${SRCDIR} -nostdinc++
24 .if empty(CXXFLAGS:M-std=*)
25 CXXFLAGS+=      -std=c++11
26 .endif
27 VERSION_MAP=    ${.CURDIR}/Version.map
28
29 .include <bsd.lib.mk>