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