Home | History | Annotate | Line # | Download | only in dist
      1  1.1  christos # $FreeBSD: head/lib/libproc/Makefile 284345 2015-06-13 19:20:56Z sjg $
      2  1.1  christos 
      3  1.1  christos .include <src.opts.mk>
      4  1.1  christos 
      5  1.1  christos LIB=	proc
      6  1.1  christos 
      7  1.1  christos SRCS=	proc_bkpt.c		\
      8  1.1  christos 	proc_create.c		\
      9  1.1  christos 	proc_regs.c		\
     10  1.1  christos 	proc_sym.c		\
     11  1.1  christos 	proc_rtld.c		\
     12  1.1  christos 	proc_util.c
     13  1.1  christos 
     14  1.1  christos INCS=	libproc.h
     15  1.1  christos 
     16  1.1  christos CFLAGS+=	-I${.CURDIR}
     17  1.1  christos # avoid cyclic dependency
     18  1.1  christos CFLAGS+=	-I${.CURDIR:H}/librtld_db
     19  1.1  christos GENDIRDEPS_FILTER+= Nlib/librtld_db
     20  1.1  christos 
     21  1.1  christos .if ${MK_CXX} == "no"
     22  1.1  christos CFLAGS+=	-DNO_CXA_DEMANGLE
     23  1.1  christos .elif ${MK_LIBCPLUSPLUS} != "no"
     24  1.1  christos LIBADD+=		cxxrt
     25  1.1  christos .else
     26  1.1  christos LIBADD+=	supcplusplus
     27  1.1  christos .endif
     28  1.1  christos 
     29  1.1  christos LIBADD+=	elf rtld_db util
     30  1.1  christos 
     31  1.1  christos .if ${MK_CDDL} != "no"
     32  1.1  christos LIBADD+=	ctf
     33  1.1  christos IGNORE_PRAGMA=	YES
     34  1.1  christos CFLAGS+=	-I${.CURDIR}/../../cddl/contrib/opensolaris/lib/libctf/common \
     35  1.1  christos 		-I${.CURDIR}/../../sys/cddl/contrib/opensolaris/uts/common \
     36  1.1  christos 		-I${.CURDIR}/../../sys/cddl/compat/opensolaris
     37  1.1  christos .else
     38  1.1  christos CFLAGS+=	-DNO_CTF
     39  1.1  christos .endif
     40  1.1  christos 
     41  1.1  christos SHLIB_MAJOR=	3
     42  1.1  christos 
     43  1.1  christos MAN=
     44  1.1  christos 
     45  1.1  christos .if ${MK_TESTS} != "no"
     46  1.1  christos SUBDIR+=	tests
     47  1.1  christos .endif
     48  1.1  christos 
     49  1.1  christos .include <bsd.lib.mk>
     50