2003-03-11 01:16:36 +03:00
|
|
|
# $NetBSD: Makefile,v 1.16 2003/03/10 22:16:36 nathanw Exp $
|
2003-01-18 13:32:11 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
WARNS= 2
|
|
|
|
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
|
|
|
.if exists(${.CURDIR}/arch/${MACHINE_ARCH})
|
|
|
|
ARCHSUBDIR= ${MACHINE_ARCH}
|
|
|
|
.elif exists(${.CURDIR}/arch/${MACHINE_CPU})
|
|
|
|
ARCHSUBDIR= ${MACHINE_CPU}
|
|
|
|
.else
|
|
|
|
.BEGIN:
|
2003-01-19 22:55:13 +03:00
|
|
|
@echo "WARNING: no ARCHSUBDIR for ${MACHINE_ARCH}/${MACHINE_CPU}; skipping..."
|
2003-01-18 13:32:11 +03:00
|
|
|
.endif
|
|
|
|
|
2003-01-19 22:55:13 +03:00
|
|
|
INCS= pthread.h pthread_types.h pthread_queue.h
|
|
|
|
INCSDIR=/usr/include
|
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
.if defined(ARCHSUBDIR)
|
|
|
|
|
|
|
|
ARCHDIR= ${.CURDIR}/arch/${ARCHSUBDIR}
|
|
|
|
.PATH: ${ARCHDIR}
|
|
|
|
|
2003-01-20 23:10:19 +03:00
|
|
|
CPPFLAGS+= -I${ARCHDIR} -I${.CURDIR} -I${.OBJDIR} -D_LIBC
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
DPSRCS+= assym.h
|
|
|
|
|
|
|
|
assym.h: genassym.sh ${ARCHDIR}/genassym.cf
|
|
|
|
sh ${.CURDIR}/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
|
|
|
|
< ${ARCHDIR}/genassym.cf > assym.h.tmp && \
|
|
|
|
mv -f assym.h.tmp assym.h
|
|
|
|
|
|
|
|
LIB= pthread
|
|
|
|
|
|
|
|
#
|
|
|
|
# NOTE: When you create a new file for libpthread, make sure that pthread.c
|
|
|
|
# gets a reference to a symbol in that file. Otherwise, Unix's stupid static
|
|
|
|
# library semantics will end up discarding potentially important objects.
|
|
|
|
#
|
|
|
|
SRCS= pthread.c
|
|
|
|
SRCS+= pthread_alarms.c
|
|
|
|
SRCS+= pthread_barrier.c
|
|
|
|
SRCS+= pthread_cancelstub.c
|
|
|
|
SRCS+= pthread_cond.c
|
|
|
|
SRCS+= pthread_lock.c
|
|
|
|
SRCS+= pthread_mutex.c
|
|
|
|
SRCS+= pthread_run.c
|
|
|
|
SRCS+= pthread_rwlock.c
|
|
|
|
SRCS+= pthread_sa.c
|
|
|
|
SRCS+= pthread_sig.c
|
2003-03-11 01:16:36 +03:00
|
|
|
SRCS+= pthread_sleep.c
|
2003-01-18 13:32:11 +03:00
|
|
|
SRCS+= pthread_specific.c
|
|
|
|
SRCS+= pthread_stack.c
|
|
|
|
SRCS+= pthread_debug.c
|
|
|
|
SRCS+= sched.c
|
2003-01-20 23:10:19 +03:00
|
|
|
SRCS+= sem.c
|
2003-01-18 13:32:11 +03:00
|
|
|
# Architecture-dependent files
|
|
|
|
SRCS+= pthread_switch.S _context_u.S
|
|
|
|
.if exists(${ARCHDIR}/pthread_md.c)
|
|
|
|
SRCS+= pthread_md.c
|
|
|
|
.endif
|
|
|
|
|
|
|
|
pthread_switch.S _context_u.S: assym.h
|
|
|
|
|
|
|
|
debuglog: debuglog.o
|
|
|
|
$(CC) -o debuglog debuglog.o -lpthread
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
|
|
|
|
.else
|
|
|
|
|
|
|
|
.include <bsd.man.mk>
|
2003-01-19 22:55:13 +03:00
|
|
|
.include <bsd.files.mk>
|
|
|
|
.include <bsd.inc.mk>
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# WARNS=2 sets -Wcast-qual. This causes problems for one of
|
|
|
|
# pthread_setspecific() and pthread_getspecific(), since the constness
|
|
|
|
# of the argument to setspecific() has to be discarded *somewhere*
|
|
|
|
# before returning it from getspecific().
|
|
|
|
CFLAGS+= -Wno-cast-qual
|