mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-24 11:29:10 +00:00
22 lines
307 B
Makefile
22 lines
307 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
LIBUCL= ${.CURDIR}/../../contrib/libucl
|
||
|
|
||
|
LIB= ucl
|
||
|
PRIVATELIB= true
|
||
|
SHLIB_MAJOR= 1
|
||
|
SRCS= ucl_emitter.c \
|
||
|
ucl_hash.c \
|
||
|
ucl_parser.c \
|
||
|
ucl_util.c \
|
||
|
xxhash.c
|
||
|
|
||
|
.PATH: ${LIBUCL}/src
|
||
|
|
||
|
WARNS= 2
|
||
|
CFLAGS+= -I${LIBUCL}/include \
|
||
|
-I${LIBUCL}/src \
|
||
|
-I${LIBUCL}/uthash
|
||
|
|
||
|
.include <bsd.lib.mk>
|