freebsd-dev/lib/libpthread_dbg/Makefile
David Xu 826d5028dd Import initial work of libpthread debugging. This is a debugger independent
friend library for libpthread, the library will be used by debugger to
read/write libpthread's internal data structures.
2004-02-04 05:01:15 +00:00

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>