aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-06-24 04:26:21 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-06-24 04:26:21 +0000
commitcd9a2f5c280b40222d21ca68b5b0962ff712d6cf (patch)
treedc80da53186aab7c56424c2574b0cd7928930721 /bin
parent2388d5d1cef849c6482878f223517c38456feecf (diff)
Notes
Diffstat (limited to 'bin')
-rw-r--r--bin/ed/test/Makefile4
-rw-r--r--bin/sh/Makefile4
-rwxr-xr-xbin/sh/mkbuiltins10
3 files changed, 9 insertions, 9 deletions
diff --git a/bin/ed/test/Makefile b/bin/ed/test/Makefile
index 9f10e1e3c2259..08f0dcd9fffa8 100644
--- a/bin/ed/test/Makefile
+++ b/bin/ed/test/Makefile
@@ -1,7 +1,7 @@
-# $Id$
+# $Id: Makefile,v 1.5 1994/09/24 02:55:35 davidg Exp $
SHELL= /bin/sh
-ED= ../obj/ed
+ED= ${.OBJDIR}/ed
all: check
@:
diff --git a/bin/sh/Makefile b/bin/sh/Makefile
index 37a3d95679210..cacba417decf1 100644
--- a/bin/sh/Makefile
+++ b/bin/sh/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 6/8/93
-# $Id: Makefile,v 1.9 1996/02/03 13:27:54 joerg Exp $
+# $Id: Makefile,v 1.11 1996/06/02 17:06:39 phk Exp $
PROG= sh
SRCS= alias.c builtins.c cd.c echo.c error.c eval.c exec.c expand.c \
@@ -27,7 +27,7 @@ ${.CURDIR}/builtins:
# just override the default rule
builtins.h builtins.c: ${.CURDIR}/mkbuiltins ${.CURDIR}/builtins
- cd ${.CURDIR}; sh mkbuiltins
+ cd ${.CURDIR} && env OBJDIR=${.OBJDIR} sh mkbuiltins
init.c: mkinit ${SRCS}
./mkinit '${CC} -c ${CFLAGS} ${LDFLAGS} init.c' ${.ALLSRC}
diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins
index e7f0d8dbbdf23..104ded646449d 100755
--- a/bin/sh/mkbuiltins
+++ b/bin/sh/mkbuiltins
@@ -35,15 +35,15 @@
# SUCH DAMAGE.
#
# @(#)mkbuiltins 8.1 (Berkeley) 5/31/93
-# $Id: mkbuiltins,v 1.2 1994/09/24 02:57:53 davidg Exp $
+# $Id: mkbuiltins,v 1.3 1995/03/30 19:45:20 phk Exp $
temp=/tmp/ka$$
havejobs=0
if grep '^#define JOBS[ ]*1' shell.h > /dev/null
then havejobs=1
fi
-if [ -d obj ] ; then
- exec > obj/builtins.c
+if [ -d ${OBJDIR} ] ; then
+ exec > ${OBJDIR}/builtins.c
else
exec > builtins.c
fi
@@ -71,8 +71,8 @@ awk '{ for (i = 2 ; i <= NF ; i++) {
echo ' NULL, 0
};'
-if [ -d obj ] ; then
- exec > obj/builtins.h
+if [ -d ${OBJDIR} ] ; then
+ exec > ${OBJDIR}/builtins.h
else
exec > builtins.h
fi