freebsd-dev/lib/libucl/Makefile
Baptiste Daroussin 3dcf5eb705 Update libucl to the 2014-07-16 snapshot
This update brings streamlined ucl emitter support
2014-07-18 06:58:01 +00:00

25 lines
377 B
Makefile

# $FreeBSD$
LIBUCL= ${.CURDIR}/../../contrib/libucl
LIB= ucl
PRIVATELIB= true
SHLIB_MAJOR= 1
SRCS= ucl_emitter_streamline.c \
ucl_emitter_utils.c \
ucl_emitter.c \
ucl_hash.c \
ucl_parser.c \
ucl_schema.c \
ucl_util.c \
xxhash.c
.PATH: ${LIBUCL}/src
WARNS= 1
CFLAGS+= -I${LIBUCL}/include \
-I${LIBUCL}/src \
-I${LIBUCL}/uthash
.include <bsd.lib.mk>