Add test programs for the new caps system calls. Temporarily disable the
[dragonfly.git] / lib / libcaps / Makefile
1 # $DragonFly: src/lib/libcaps/Makefile,v 1.4 2004/01/18 12:39:58 dillon Exp $
2 #
3 LIB=caps
4 SHLIB_MAJOR= 1
5 SHLIB_MINOR= 0
6 AINC= -I${.CURDIR}/${MACHINE_ARCH} -I${.OBJDIR}
7 CFLAGS+= -I${.CURDIR}/.. -I${.CURDIR}/${MACHINE_ARCH}
8 CFLAGS+= -DSMP -D_UTHREAD
9 CFLAGS+= -Wall -g -DCAPS_DEBUG
10 INSTALL_PIC_ARCHIVE=    yes
11 .PATH:  ${.CURDIR}/${MACHINE_ARCH}  ${.CURDIR}/../../sys/kern
12
13 MISRCS= lwkt_msgport.c lwkt_thread.c \
14         uthread.c init.c sysport.c slaballoc.c \
15         globaldata.c 
16
17 # caps_client.c caps_service.c caps_misc.c
18
19 SRCS+= ${.OBJDIR}/asdefs.h
20 CLEANFILES+=asdefs asdefs.o ${.CURDIR}/asdefs.h
21
22 ${.OBJDIR}/asdefs.h: asdefs
23         ${.OBJDIR}/${.ALLSRC} > ${.TARGET}
24
25 .include "${MACHINE_ARCH}/Makefile.inc"
26
27 ##################################################################
28 # For now this is a clone of what src/lib/libcr/Makefile.inc does.
29 # When this is liblwkt becomes part of libcr the rest of this file
30 # can be removed.
31 ##################################################################
32
33 # If there are no machine dependent sources, append all the
34 # machine-independent sources:
35 .if empty{MDSRCS}
36 SRCS+=          ${MISRCS}
37 .else
38 # Append machine-dependent sources, then append machine-independent sources
39 # for which there is no machine-dependent variant.
40 SRCS+=          ${MDSRCS}
41 .for _src in ${MISRCS}
42 .if ${MDSRCS:R:M${_src:R}} == ""
43 SRCS+=          ${_src}
44 .endif
45 .endfor
46 .endif
47
48 .include <bsd.lib.mk>