NetBSD/regress/lib/libpthread/Makefile

39 lines
858 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.32 2009/04/02 12:58:44 drochner Exp $
.include <bsd.own.mk>
.if exists(${.CURDIR}/../../../lib/libpthread/arch/${MACHINE_ARCH})
ARCHSUBDIR= ${MACHINE_ARCH}
.elif exists(${.CURDIR}/../../../lib/libpthread/arch/${MACHINE_CPU})
ARCHSUBDIR= ${MACHINE_CPU}
.else
.BEGIN:
@echo "WARNING: no ARCHSUBDIR for ${MACHINE_ARCH}/${MACHINE_CPU}"
@echo "*** REFUSING TO CONTINUE! (nag, nag, nag) ***"
@false # this is intentional!
.endif
.if defined(ARCHSUBDIR)
SUBDIR+= atexit \
barrier1 \
cancel2 \
cond1 cond2 cond3 cond4 cond5 cond6 condcancel1 \
exit1 \
find \
fork \
fpu \
kill1 \
mutex1 mutex2 mutex3 mutex4 \
name \
2005-07-17 03:02:24 +04:00
once1 once2 once3 \
preempt1 \
resolv rwlock1 \
2005-07-27 00:44:47 +04:00
sem sem2 sigalarm sigmask1 sigmask2 sigmask3 sigmask4 \
siglongjmp1 sigsuspend \
2005-04-19 20:36:44 +04:00
sleep1
.endif
.include <bsd.subdir.mk>