NetBSD/lib/libpthread/Makefile

23 lines
462 B
Makefile
Raw Normal View History

# from: @(#)Makefile 5.2 (Berkeley) 3/5/91
LIB=pthread
1993-11-16 06:21:44 +03:00
NOPIC= no
1994-02-08 00:59:27 +03:00
CPPFLAGS+= -DPTHREAD_KERNEL -I. -I${.CURDIR}/include -I${.CURDIR}/arch/${MACHINE}
CFLAGS+= ${CPPFLAGS}
.include "${.CURDIR}/arch/${MACHINE}/Makefile.inc"
.include "${.CURDIR}/pthreads/Makefile.inc"
1994-02-08 00:59:27 +03:00
.include "${.CURDIR}/stdio/Makefile.inc"
1993-11-15 14:11:00 +03:00
all beforedepend: pthread
CLEANFILES+=pthread
1993-11-15 14:11:00 +03:00
pthread:
if [ ! -e pthread ]; then \
ln -s ${.CURDIR}/include pthread; \
fi
.include <bsd.lib.mk>