Home | History | Annotate | Line # | Download | only in libpthread
Makefile revision 1.8.2.9
      1  1.8.2.9  thorpej #	$NetBSD: Makefile,v 1.8.2.9 2001/11/16 18:09:26 thorpej Exp $
      2  1.8.2.1  nathanw #
      3  1.8.2.6  nathanw 
      4  1.8.2.6  nathanw WARNS=	2
      5  1.8.2.9  thorpej 
      6  1.8.2.9  thorpej .include <bsd.own.mk>
      7      1.1   proven 
      8  1.8.2.1  nathanw .if exists(${.CURDIR}/arch/${MACHINE_ARCH})
      9  1.8.2.1  nathanw ARCHSUBDIR=	${MACHINE_ARCH}
     10  1.8.2.1  nathanw .elif exists(${.CURDIR}/arch/${MACHINE_CPU}) 
     11  1.8.2.1  nathanw ARCHSUBDIR=	${MACHINE_CPU}
     12  1.8.2.1  nathanw .else
     13  1.8.2.1  nathanw .BEGIN:
     14  1.8.2.1  nathanw 	@echo no ARCHSUBDIR for ${MACHINE_ARCH} nor ${MACHINE_CPU}
     15  1.8.2.1  nathanw 	@false
     16  1.8.2.1  nathanw .endif
     17  1.8.2.1  nathanw 
     18  1.8.2.1  nathanw ARCHDIR=	${.CURDIR}/arch/${ARCHSUBDIR}
     19  1.8.2.1  nathanw AINC=		-I${ARCHDIR}
     20  1.8.2.1  nathanw .PATH:	${ARCHDIR}
     21  1.8.2.1  nathanw 
     22  1.8.2.1  nathanw CPPFLAGS+=	${AINC} -I${.CURDIR} -I${.OBJDIR}
     23  1.8.2.1  nathanw 
     24  1.8.2.1  nathanw DPSRCS+=	assym.h
     25  1.8.2.1  nathanw 
     26  1.8.2.1  nathanw assym.h: genassym.sh ${ARCHDIR}/genassym.cf
     27  1.8.2.1  nathanw 	sh ${.CURDIR}/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
     28  1.8.2.1  nathanw 		< ${ARCHDIR}/genassym.cf > assym.h.tmp && \
     29  1.8.2.1  nathanw 	mv -f assym.h.tmp assym.h
     30  1.8.2.1  nathanw 
     31  1.8.2.1  nathanw LIB=	pthread
     32  1.8.2.5  nathanw SRCS=	pthread.c pthread_cond.c pthread_lock.c pthread_mutex.c
     33  1.8.2.7  nathanw SRCS+=	pthread_run.c pthread_sa.c pthread_sig.c pthread_specific.c
     34  1.8.2.7  nathanw SRCS+=  pthread_stack.c
     35  1.8.2.4  nathanw SRCS+=  pthread_debug.c
     36  1.8.2.1  nathanw SRCS+=	sched.c
     37  1.8.2.3  nathanw # Architecture-dependent files
     38  1.8.2.3  nathanw SRCS+=	pthread_switch.S _context_u.S
     39  1.8.2.3  nathanw 
     40  1.8.2.8  nathanw pthread_switch.S _context_u.S: assym.h
     41  1.8.2.1  nathanw 
     42  1.8.2.2  nathanw INCS=	pthread.h pthread_types.h pthread_queue.h sched.h
     43  1.8.2.1  nathanw INCSDIR=/usr/include
     44  1.8.2.4  nathanw 
     45  1.8.2.4  nathanw debuglog: debuglog.o
     46  1.8.2.4  nathanw 	$(CC) -o debuglog debuglog.o -lpthread
     47      1.1   proven 
     48  1.8.2.1  nathanw .include <bsd.lib.mk>
     49  1.8.2.7  nathanw 
     50  1.8.2.7  nathanw # WARNS=2 sets -Wcast-qual. This causes problems for one of
     51  1.8.2.7  nathanw # pthread_setspecific() and pthread_getspecific(), since the constness
     52  1.8.2.7  nathanw # of the argument to setspecific() has to be discarded *somewhere*
     53  1.8.2.7  nathanw # before returning it from getspecific().
     54  1.8.2.7  nathanw CFLAGS+= -Wno-cast-qual
     55  1.8.2.7  nathanw 
     56  1.8.2.7  nathanw 
     57  1.8.2.2  nathanw # DO NOT DELETE
     58