1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00
freebsd/lib/libucl/Makefile
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.

MFC After: 3 days (though I'll just run the command on the branches)
Sponsored by: Netflix
2024-07-15 16:43:39 -06:00

33 lines
531 B
Makefile

LIBUCL_DIR= ${SRCTOP}/contrib/libucl
PACKAGE=lib${LIB}
LIB= ucl
PRIVATELIB= true
SHLIB_MAJOR= 1
SRCS= ucl_emitter_streamline.c \
ucl_emitter_utils.c \
ucl_emitter.c \
ucl_hash.c \
ucl_msgpack.c \
ucl_parser.c \
ucl_schema.c \
ucl_sexp.c \
ucl_util.c
.PATH: ${LIBUCL_DIR}/src \
${LIBUCL_DIR}/include \
${LIBUCL_DIR}/doc
INCS= ucl.h
LIBADD= m
WARNS?= 1
CFLAGS+= -I${LIBUCL_DIR}/include \
-I${LIBUCL_DIR}/src \
-I${LIBUCL_DIR}/uthash \
-I${LIBUCL_DIR}/klib
MAN+= libucl.3
.include <bsd.lib.mk>