mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 11:00:15 -05:00
It is added an INTERNALLIB and not installed. It will be used by kyua. This is a preparatory commit for D24103. Reviewed by: emaste Obtained from: CheriBSD Sponsored by: DARPA
26 lines
404 B
Makefile
26 lines
404 B
Makefile
# $FreeBSD$
|
|
|
|
LIB_CXX= lutok
|
|
INTERNALLIB=
|
|
|
|
LIBADD= lua
|
|
|
|
.PATH: ${SRCTOP}/contrib/lutok
|
|
SRCS= c_gate.cpp \
|
|
debug.cpp \
|
|
exceptions.cpp \
|
|
operations.cpp \
|
|
stack_cleaner.cpp \
|
|
state.cpp
|
|
|
|
CFLAGS+= -I${SRCTOP}/contrib/lutok/include \
|
|
-I${SRCTOP}/lib/liblua \
|
|
-I${SRCTOP}/contrib/lua/src
|
|
|
|
WARNS?= 3
|
|
SHLIB_MAJOR= 0
|
|
|
|
# lutok uses auto_ptr
|
|
CFLAGS+= -Wno-deprecated-declarations
|
|
|
|
.include <bsd.lib.mk>
|