Home | History | Annotate | Line # | Download | only in libpthread
Makefile revision 1.5
      1 #	from: @(#)Makefile	5.2 (Berkeley) 3/5/91
      2 
      3 LIB=pthread
      4 NOPIC= no
      5 CPPFLAGS+= -g -DPTHREAD_KERNEL -I. -I${.CURDIR}/include -I${.CURDIR}/arch/${MACHINE}
      6 CFLAGS+= ${CPPFLAGS}
      7 
      8 .include "${.CURDIR}/arch/${MACHINE}/Makefile.inc"
      9 .include "${.CURDIR}/pthreads/Makefile.inc"
     10 
     11 all beforedepend: pthread
     12 
     13 CLEANFILES+=pthread 
     14 
     15 pthread: 
     16 	if [ ! -e pthread ]; then; \
     17 		ln -s ${.CURDIR}/include pthread; \
     18 	fi
     19 	
     20 .include <bsd.lib.mk>
     21 
     22