diff options
| author | christos <christos@NetBSD.org> | 1995-10-22 21:58:21 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 1995-10-22 21:58:21 +0000 |
| commit | 89c5e30a44fbcf1fc7b34092feae41f0c75c1306 (patch) | |
| tree | bdbb6fcc5119a96048ac483b3487cc1d18f0dde1 /gnu/usr.bin | |
| parent | 99fc0f40d9f01fe6b8baf18cf93aebcf7659d2da (diff) | |
Parallel make fixes
Diffstat (limited to 'gnu/usr.bin')
| -rw-r--r-- | gnu/usr.bin/gdb/gdb/Makefile | 11 | ||||
| -rw-r--r-- | gnu/usr.bin/gdb/objdump/Makefile | 8 | ||||
| -rw-r--r-- | gnu/usr.bin/groff/Makefile.cfg | 10 | ||||
| -rw-r--r-- | gnu/usr.bin/rcs/Makefile.inc | 5 |
4 files changed, 21 insertions, 13 deletions
diff --git a/gnu/usr.bin/gdb/gdb/Makefile b/gnu/usr.bin/gdb/gdb/Makefile index cb044851deb..8b4190c7b48 100644 --- a/gnu/usr.bin/gdb/gdb/Makefile +++ b/gnu/usr.bin/gdb/gdb/Makefile @@ -1,16 +1,19 @@ -# $Id: Makefile,v 1.7 1995/10/22 00:21:52 christos Exp $ +# $Id: Makefile,v 1.8 1995/10/22 22:48:45 christos Exp $ # Paths to libraries # PARALLEL=yes LIBBFD!=cd $(.CURDIR)/../bfd; \ - printf "xxx:\n\techo \$${.OBJDIR}/libbfd.a\n" | ${MAKE} -r -s -f - xxx + printf "xxx:\n\techo \$${.OBJDIR}/libbfd.a\n" | \ + ${MAKE} -r -s -f - xxx | grep libbfd LIBREADLINE!=cd $(.CURDIR)/../readline; \ - printf "xxx:\n\techo \$${.OBJDIR}/libreadline.a\n" | ${MAKE} -r -s -f - xxx + printf "xxx:\n\techo \$${.OBJDIR}/libreadline.a\n" | \ + ${MAKE} -r -s -f - xxx | grep libreadline LIBIBERTY!=cd $(.CURDIR)/../libiberty; \ - printf "xxx:\n\techo \$${.OBJDIR}/libiberty.a\n" | ${MAKE} -r -s -f - xxx + printf "xxx:\n\techo \$${.OBJDIR}/libiberty.a\n" | \ + ${MAKE} -r -s -f - xxx | grep libiberty PROG= gdb diff --git a/gnu/usr.bin/gdb/objdump/Makefile b/gnu/usr.bin/gdb/objdump/Makefile index 9786414e92e..b40a7c234e9 100644 --- a/gnu/usr.bin/gdb/objdump/Makefile +++ b/gnu/usr.bin/gdb/objdump/Makefile @@ -1,12 +1,14 @@ -# $Id: Makefile,v 1.1 1994/01/28 16:38:22 pk Exp $ +# $Id: Makefile,v 1.2 1995/10/22 22:48:51 christos Exp $ # Paths to libraries # LIBBFD!=cd $(.CURDIR)/../bfd; \ - printf "xxx:\n\techo \$${.OBJDIR}/libbfd.a\n" | make -r -s -f - xxx + printf "xxx:\n\techo \$${.OBJDIR}/libbfd.a\n" | \ + ${MAKE} -r -s -f - xxx | grep libbfd LIBIBERTY!=cd $(.CURDIR)/../libiberty; \ - printf "xxx:\n\techo \$${.OBJDIR}/libiberty.a\n" | make -r -s -f - xxx + printf "xxx:\n\techo \$${.OBJDIR}/libiberty.a\n" | \ + ${MAKE} -r -s -f - xxx | grep libiberty PROG= objdump diff --git a/gnu/usr.bin/groff/Makefile.cfg b/gnu/usr.bin/groff/Makefile.cfg index 6a08d564f57..e6454029036 100644 --- a/gnu/usr.bin/groff/Makefile.cfg +++ b/gnu/usr.bin/groff/Makefile.cfg @@ -1,4 +1,4 @@ -# $Id: Makefile.cfg,v 1.14 1995/09/27 13:55:19 cgd Exp $ +# $Id: Makefile.cfg,v 1.15 1995/10/22 21:58:21 christos Exp $ .if defined(PROG) LDADD+= -lgnumalloc @@ -10,14 +10,16 @@ DPADD+= /usr/lib/libgnumalloc.a # DEVICES_ is defined in devices/Makefile.inc to avoid this section. .if !defined(DEVICES_) LIBGROFF!=cd $(.CURDIR)/../libgroff; \ - printf "xxx:\n\techo \$${.OBJDIR}/libgroff.a\n" | ${MAKE} -r -s -f - xxx + printf "xxx:\n\techo \$${.OBJDIR}/libgroff.a\n" | \ + ${MAKE} -r -s -f - xxx | grep libgroff LIBDRIVER!=cd $(.CURDIR)/../libdriver; \ printf "xxx:\n\techo \$${.OBJDIR}/libdriver.a\n" | \ - ${MAKE} -r -s -f - xxx + ${MAKE} -r -s -f - xxx | grep libdriver LIBBIB!=cd $(.CURDIR)/../libbib; \ - printf "xxx:\n\techo \$${.OBJDIR}/libbib.a\n" | ${MAKE} -r -s -f - xxx + printf "xxx:\n\techo \$${.OBJDIR}/libbib.a\n" | \ + ${MAKE} -r -s -f - xxx | grep libbib .endif CFLAGS+= -DHAVE_UNISTD_H=1\ diff --git a/gnu/usr.bin/rcs/Makefile.inc b/gnu/usr.bin/rcs/Makefile.inc index 97293bcef33..19fb4d9c4c5 100644 --- a/gnu/usr.bin/rcs/Makefile.inc +++ b/gnu/usr.bin/rcs/Makefile.inc @@ -1,4 +1,5 @@ -# $Id: Makefile.inc,v 1.4 1994/01/24 18:39:52 cgd Exp $ +# $Id: Makefile.inc,v 1.5 1995/10/22 22:01:43 christos Exp $ LIBRCS!=cd $(.CURDIR)/../lib; \ - printf "xxx:\n\techo \$${.OBJDIR}/librcs.a\n" | ${MAKE} -r -s -f - xxx + printf "xxx:\n\techo \$${.OBJDIR}/librcs.a\n" | \ + ${MAKE} -r -s -f - xxx | grep librcs |
