diff options
| author | Søren Schmidt <sos@FreeBSD.org> | 1998-06-07 10:50:28 +0000 |
|---|---|---|
| committer | Søren Schmidt <sos@FreeBSD.org> | 1998-06-07 10:50:28 +0000 |
| commit | f55eda8752ab71819a9cf4c4d4d04d555070a728 (patch) | |
| tree | e5640f631ed31e208a7ad4a32c5a443fd4d6a9bb | |
| parent | 12f66dd32fd8ec829bb0dbef9fb94b5032924324 (diff) | |
Notes
| -rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 08b9e29475272..f645c2b8caf5c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.198 1998/06/06 01:13:21 bde Exp $ +# $Id: Makefile,v 1.199 1998/06/06 04:39:41 jkoshy Exp $ # # While porting to the another architecture include the bootstrap instead # of the normal build. @@ -255,6 +255,17 @@ buildworld: ${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} install; \ ${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} clean \ ) + @echo + @echo "--------------------------------------------------------------" + @echo " Making mtools" + @echo "--------------------------------------------------------------" + ( \ + cd ${.CURDIR}/usr.sbin/mtree; \ + MAKEOBJDIRPREFIX=""; unset MAKEOBJDIRPREFIX; \ + ${MAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} all; \ + ${MAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} install; \ + ${MAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} clean \ + ) .endif @echo @echo "--------------------------------------------------------------" |
