826d5028dd
friend library for libpthread, the library will be used by debugger to read/write libpthread's internal data structures.
21 lines
485 B
Makefile
21 lines
485 B
Makefile
# $FreeBSD$
|
|
|
|
LIB=pthread_dbg
|
|
SHLIB_MAJOR=1
|
|
CFLAGS+=-DPTHREAD_KERNEL
|
|
CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/../libpthread/thread \
|
|
-I${.CURDIR}/../../include
|
|
CFLAGS+=-I${.CURDIR}/../libpthread/arch/${MACHINE_ARCH}/include
|
|
CFLAGS+=-I${.CURDIR}/../libpthread/sys
|
|
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/arch/${MACHINE_ARCH}/include
|
|
CFLAGS+=-Wall
|
|
|
|
PRECIOUSLIB=yes
|
|
|
|
.PATH: ${.CURDIR}
|
|
|
|
SRCS+=pthread_dbg.c
|
|
|
|
.include "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"
|
|
.include <bsd.lib.mk>
|