xref: /NextBSD/lib/libxpc/Makefile (revision 7498fff0e4320dcdb870dbe7586a6102809cfc82)
1.include <bsd.init.mk>
2
3LIB= xpc
4NO_WERROR= yes
5
6.PATH: ${.CURDIR}/xpc
7
8BASE_INCLUDE= -I${.CURDIR}/../../include/apple
9BASE_INCLUDE+= -I${.CURDIR}/../libnv
10BASE_INCLUDE+= -I${.CURDIR} -I${.CURDIR}/../../sbin/launchd -I.
11BASE_INCLUDE+= -I${.CURDIR}/../../include -I${.CURDIR}/../../sys
12CFLAGS+= ${BASE_INCLUDE} -fblocks -g -O0
13
14SRCS=	xpc_dictionary.c \
15	xpc_misc.c \
16	xpc_type.c \
17	xpc_array.c \
18	xpc_connection.c \
19	subr_nvlist.c \
20	subr_nvpair.c
21
22INCSDIR= ${INCLUDEDIR}/xpc
23INCS=	activity.h \
24	base.h \
25	connection.h \
26	debug.h \
27	endpoint.h \
28	launchd.h \
29	xpc.h
30
31.include <bsd.lib.mk>
32