]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/liblutok/Makefile
sysctl(9): Fix a few mandoc related issues
[FreeBSD/FreeBSD.git] / lib / liblutok / Makefile
1 # $FreeBSD$
2
3 LIB_CXX=        lutok
4 INTERNALLIB=
5
6 LIBADD=         lua
7
8 .PATH: ${SRCTOP}/contrib/lutok
9 SRCS=   c_gate.cpp              \
10         debug.cpp               \
11         exceptions.cpp          \
12         operations.cpp          \
13         stack_cleaner.cpp       \
14         state.cpp
15
16 CFLAGS+=        -I${SRCTOP}/contrib/lutok/include \
17                 -I${SRCTOP}/lib/liblua  \
18                 -I${SRCTOP}/contrib/lua/src
19
20 WARNS?= 3
21 SHLIB_MAJOR=    0
22
23 # lutok uses auto_ptr
24 CFLAGS+=        -Wno-deprecated-declarations
25
26 .include <bsd.lib.mk>