xref: /freebsd-13.1/lib/libcbor/Makefile (revision e610bb4a)
1*e610bb4aSEd Maste# $FreeBSD$
2*e610bb4aSEd Maste
3*e610bb4aSEd MastePACKAGE=ssh
4*e610bb4aSEd MasteLIB=	cbor
5*e610bb4aSEd MastePRIVATELIB=
6*e610bb4aSEd Maste
7*e610bb4aSEd MasteDIST=${SRCTOP}/contrib/libcbor
8*e610bb4aSEd Maste.PATH:	${DIST}/src
9*e610bb4aSEd Maste
10*e610bb4aSEd MasteSRCS=	cbor.c
11*e610bb4aSEd MasteSRCS+=	cbor/arrays.c
12*e610bb4aSEd MasteSRCS+=	cbor/bytestrings.c
13*e610bb4aSEd MasteSRCS+=	cbor/callbacks.c
14*e610bb4aSEd MasteSRCS+=	cbor/common.c
15*e610bb4aSEd MasteSRCS+=	cbor/encoding.c
16*e610bb4aSEd MasteSRCS+=	cbor/floats_ctrls.c
17*e610bb4aSEd MasteSRCS+=	cbor/ints.c
18*e610bb4aSEd MasteSRCS+=	cbor/maps.c
19*e610bb4aSEd MasteSRCS+=	cbor/serialization.c
20*e610bb4aSEd MasteSRCS+=	cbor/streaming.c
21*e610bb4aSEd MasteSRCS+=	cbor/strings.c
22*e610bb4aSEd MasteSRCS+=	cbor/tags.c
23*e610bb4aSEd MasteSRCS+=	cbor/internal/builder_callbacks.c
24*e610bb4aSEd MasteSRCS+=	cbor/internal/encoders.c
25*e610bb4aSEd MasteSRCS+=	cbor/internal/loaders.c
26*e610bb4aSEd MasteSRCS+=	cbor/internal/memory_utils.c
27*e610bb4aSEd MasteSRCS+=	cbor/internal/stack.c
28*e610bb4aSEd MasteSRCS+=	cbor/internal/unicode.c
29*e610bb4aSEd Maste
30*e610bb4aSEd MasteCFLAGS+= -I${DIST}/src -I${.CURDIR}
31*e610bb4aSEd Maste
32*e610bb4aSEd MasteWARNS?=	2
33*e610bb4aSEd MasteMAN=
34*e610bb4aSEd Maste
35*e610bb4aSEd Maste.include <bsd.lib.mk>
36