50 lines
1.0 KiB
Makefile
50 lines
1.0 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2012/07/19 06:33:48 joerg Exp $
|
|
#
|
|
|
|
WARNS?= 5
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIBPDIR= ${.CURDIR}/../libpthread
|
|
|
|
.if defined(PTHREAD_MACHINE_ARCH) && !empty(PTHREAD_MACHINE_ARCH) && \
|
|
exists(${LIBPDIR}/arch/${PTHREAD_MACHINE_ARCH})
|
|
ARCHSUBDIR= ${PTHREAD_MACHINE_ARCH}
|
|
.elif exists(${LIBPDIR}/arch/${MACHINE_ARCH})
|
|
ARCHSUBDIR= ${MACHINE_ARCH}
|
|
.elif exists(${LIBPDIR}/arch/${MACHINE_CPU})
|
|
ARCHSUBDIR= ${MACHINE_CPU}
|
|
.else
|
|
.BEGIN:
|
|
@echo "no ARCHSUBDIR for ${MACHINE_ARCH}/${MACHINE_CPU}; skipping..."
|
|
.endif
|
|
|
|
.if defined(ARCHSUBDIR)
|
|
|
|
LIB= pthread_dbg
|
|
|
|
ARCHDIR= ${LIBPDIR}/arch/${ARCHSUBDIR}
|
|
.PATH: ${ARCHDIR}
|
|
|
|
CPPFLAGS+= -I${ARCHDIR} -I${LIBPDIR} -I${.CURDIR}
|
|
|
|
assym.h: genassym.sh ${ARCHDIR}/genassym.cf
|
|
${HOST_SH} ${.CURDIR}/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
|
|
< ${ARCHDIR}/genassym.cf > assym.h.tmp && \
|
|
mv -f assym.h.tmp assym.h
|
|
|
|
SRCS= pthread_dbg.c
|
|
|
|
CPPFLAGS+= -D__LIBPTHREAD_SOURCE__
|
|
|
|
INCS= pthread_dbg.h
|
|
INCSDIR=/usr/include
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
.else
|
|
|
|
.include <bsd.man.mk>
|
|
|
|
.endif
|