Makefile needed a preall to make a few links before compiling sources.

CVS doesn't check in symlinks.
This commit is contained in:
proven 1993-11-15 06:49:08 +00:00
parent 89fc7bac08
commit 2000519508
2 changed files with 11 additions and 1 deletions

View File

@ -8,5 +8,15 @@ CFLAGS+= ${CPPFLAGS}
.include "${.CURDIR}/arch/${MACHINE}/Makefile.inc"
.include "${.CURDIR}/pthreads/Makefile.inc"
all: preall
preall:
if [ ! -e include/pthread ]; then; \
ln -s . include/pthread; \
fi
if [ ! -e arch/${MACHINE}/pthread ]; then; \
ln -s . arch/${MACHINE}/pthread; \
fi
.include <bsd.lib.mk>

View File

@ -5,7 +5,7 @@ at the Winter 93 USENIX conference.
It is currently being designed and written by me, Chris Provenzano.
All bug, comments, and questions can be sent me at either
proven@athena.mit.edu or proven@sun-lamp.cs.berkeley.edu
Please don't send bugs or patches to any of the NetBSD mailing lists.
Please don't send questions, bugs or patches to any of the NetBSD mailing lists.
Thanks goes to John Carr jfc@mit.edu for porting this to the IBM/RT,
and for his bug reports and fixes.