1994-08-13 18:47:28 -04:00
|
|
|
#
|
1995-11-09 04:58:17 -05:00
|
|
|
# $Id: Makefile,v 1.66 1995/11/05 18:42:23 jfieber Exp $
|
1994-08-13 18:47:28 -04:00
|
|
|
#
|
|
|
|
|
# Make command line options:
|
1995-05-29 19:50:55 -04:00
|
|
|
# -DCLOBBER will remove /usr/include and MOST of /usr/lib
|
1994-08-13 18:47:28 -04:00
|
|
|
# -DMAKE_LOCAL to add ./local to the SUBDIR list
|
|
|
|
|
# -DMAKE_PORTS to add ./ports to the SUBDIR list
|
1994-09-29 09:06:54 -04:00
|
|
|
# -DMAKE_EBONES to build eBones (KerberosIV)
|
|
|
|
|
#
|
1994-08-13 18:47:28 -04:00
|
|
|
# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
|
1994-08-20 17:34:59 -04:00
|
|
|
# -DNOCRYPT will prevent building of crypt versions
|
1994-09-16 16:24:29 -04:00
|
|
|
# -DNOLKM do not build loadable kernel modules
|
1994-08-13 18:47:28 -04:00
|
|
|
# -DNOOBJDIR do not run ``${MAKE} obj''
|
|
|
|
|
# -DNOPROFILE do not build profiled libraries
|
1994-08-20 17:34:59 -04:00
|
|
|
# -DNOSECURE do not go into secure subdir
|
1994-05-27 08:42:53 -04:00
|
|
|
|
1994-08-13 18:47:28 -04:00
|
|
|
# Put initial settings here.
|
|
|
|
|
SUBDIR=
|
1994-05-27 08:42:53 -04:00
|
|
|
|
1995-03-26 20:31:09 -05:00
|
|
|
# We must do include and lib first so that the perl *.ph generation
|
|
|
|
|
# works correctly as it uses the header files installed by this.
|
1995-03-16 23:59:44 -05:00
|
|
|
.if exists(include)
|
|
|
|
|
SUBDIR+= include
|
|
|
|
|
.endif
|
1995-03-26 20:31:09 -05:00
|
|
|
.if exists(lib)
|
|
|
|
|
SUBDIR+= lib
|
|
|
|
|
.endif
|
1995-03-16 23:59:44 -05:00
|
|
|
|
1994-08-13 18:47:28 -04:00
|
|
|
.if exists(bin)
|
|
|
|
|
SUBDIR+= bin
|
|
|
|
|
.endif
|
|
|
|
|
.if exists(contrib)
|
|
|
|
|
SUBDIR+= contrib
|
|
|
|
|
.endif
|
|
|
|
|
.if exists(games)
|
|
|
|
|
SUBDIR+= games
|
|
|
|
|
.endif
|
|
|
|
|
.if exists(gnu)
|
|
|
|
|
SUBDIR+= gnu
|
|
|
|
|
.endif
|
1994-09-29 09:06:54 -04:00
|
|
|
.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
|
1994-09-09 16:29:20 -04:00
|
|
|
SUBDIR+= eBones
|
|
|
|
|
.endif
|
1994-08-13 18:47:28 -04:00
|
|
|
.if exists(libexec)
|
|
|
|
|
SUBDIR+= libexec
|
|
|
|
|
.endif
|
|
|
|
|
.if exists(sbin)
|
|
|
|
|
SUBDIR+= sbin
|
|
|
|
|
.endif
|
|
|
|
|
.if exists(share)
|
|
|
|
|
SUBDIR+= share
|
|
|
|
|
.endif
|
|
|
|
|
.if exists(sys)
|
|
|
|
|
SUBDIR+= sys
|
|
|
|
|
.endif
|
|
|
|
|
.if exists(usr.bin)
|
|
|
|
|
SUBDIR+= usr.bin
|
|
|
|
|
.endif
|
|
|
|
|
.if exists(usr.sbin)
|
|
|
|
|
SUBDIR+= usr.sbin
|
|
|
|
|
.endif
|
1994-09-16 16:24:29 -04:00
|
|
|
.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
|
|
|
|
|
SUBDIR+= secure
|
|
|
|
|
.endif
|
|
|
|
|
.if exists(lkm) && !defined(NOLKM)
|
|
|
|
|
SUBDIR+= lkm
|
|
|
|
|
.endif
|
1994-08-13 18:47:28 -04:00
|
|
|
|
1994-11-14 15:52:54 -05:00
|
|
|
# etc must be last for "distribute" to work
|
|
|
|
|
.if exists(etc) && make(distribute)
|
|
|
|
|
SUBDIR+= etc
|
|
|
|
|
.endif
|
|
|
|
|
|
1994-08-13 18:47:28 -04:00
|
|
|
# These are last, since it is nice to at least get the base system
|
|
|
|
|
# rebuilt before you do them.
|
|
|
|
|
.if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
|
|
|
|
|
SUBDIR+= local
|
|
|
|
|
.endif
|
|
|
|
|
.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
|
|
|
|
|
SUBDIR+= ports
|
|
|
|
|
.endif
|
|
|
|
|
|
|
|
|
|
# Handle the -DNOOBJDIR and -DNOCLEANDIR
|
|
|
|
|
.if defined(NOOBJDIR)
|
|
|
|
|
OBJDIR=
|
|
|
|
|
.else
|
|
|
|
|
OBJDIR= obj
|
|
|
|
|
.endif
|
|
|
|
|
.if defined(NOCLEANDIR)
|
|
|
|
|
CLEANDIR= clean
|
1995-05-29 19:50:55 -04:00
|
|
|
.else
|
1994-08-13 18:47:28 -04:00
|
|
|
CLEANDIR= cleandir
|
|
|
|
|
.endif
|
|
|
|
|
|
1995-10-26 05:24:59 -04:00
|
|
|
world: hierarchy mk cleandist includes lib-tools libraries build-tools
|
1994-08-13 18:47:28 -04:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo " Rebuilding ${DESTDIR} The whole thing"
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo
|
|
|
|
|
${MAKE} depend all install
|
|
|
|
|
cd ${.CURDIR}/share/man && ${MAKE} makedb
|
|
|
|
|
|
1994-09-23 05:01:20 -04:00
|
|
|
hierarchy:
|
1994-08-13 18:47:28 -04:00
|
|
|
@echo "--------------------------------------------------------------"
|
1994-09-23 05:01:20 -04:00
|
|
|
@echo " Making hierarchy"
|
1994-08-13 18:47:28 -04:00
|
|
|
@echo "--------------------------------------------------------------"
|
1995-02-25 20:27:27 -05:00
|
|
|
cd ${.CURDIR}/etc && ${MAKE} distrib-dirs
|
1994-08-26 16:16:58 -04:00
|
|
|
|
|
|
|
|
update:
|
|
|
|
|
.if defined(SUP_UPDATE)
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo "Running sup"
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@sup -v ${SUPFILE}
|
1995-09-14 21:09:59 -04:00
|
|
|
.if defined(SUPFILE1)
|
|
|
|
|
@sup -v ${SUPFILE1}
|
|
|
|
|
.endif
|
|
|
|
|
.if defined(SUPFILE2)
|
|
|
|
|
@sup -v ${SUPFILE2}
|
|
|
|
|
.endif
|
1994-08-26 16:16:58 -04:00
|
|
|
.endif
|
|
|
|
|
.if defined(CVS_UPDATE)
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo "Updating /usr/src from cvs repository" ${CVSROOT}
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
cd ${.CURDIR} && cvs update -P -d
|
|
|
|
|
.endif
|
1994-08-13 18:47:28 -04:00
|
|
|
|
|
|
|
|
cleandist:
|
|
|
|
|
.if !defined(NOCLEANDIR)
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo " Cleaning up the source tree, and rebuilding the obj tree"
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo
|
|
|
|
|
here=`pwd`; dest=/usr/obj`echo $$here | sed 's,^/usr/src,,'`; \
|
|
|
|
|
if test -d /usr/obj -a ! -d $$dest; then \
|
|
|
|
|
mkdir -p $$dest; \
|
|
|
|
|
else \
|
|
|
|
|
true; \
|
|
|
|
|
fi; \
|
|
|
|
|
cd $$dest && rm -rf ${SUBDIR}
|
|
|
|
|
find . -name obj | xargs rm -rf
|
|
|
|
|
.if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
|
|
|
|
|
# The cd is done as local may well be a symbolic link
|
|
|
|
|
-cd local && find . -name obj | xargs rm -rf
|
|
|
|
|
.endif
|
|
|
|
|
.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
|
|
|
|
|
# The cd is done as local may well be a symbolic link
|
|
|
|
|
-cd ports && find . -name obj | xargs rm -rf
|
|
|
|
|
.endif
|
|
|
|
|
${MAKE} cleandir
|
|
|
|
|
${MAKE} obj
|
|
|
|
|
.endif
|
|
|
|
|
|
1994-10-15 17:19:56 -04:00
|
|
|
installmost:
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo " Installing programs only"
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
cd ${.CURDIR}/bin && ${MAKE} ${.MAKEFLAGS} install
|
|
|
|
|
cd ${.CURDIR}/sbin && ${MAKE} ${.MAKEFLAGS} install
|
|
|
|
|
cd ${.CURDIR}/libexec && ${MAKE} ${.MAKEFLAGS} install
|
|
|
|
|
cd ${.CURDIR}/usr.bin && ${MAKE} ${.MAKEFLAGS} install
|
|
|
|
|
cd ${.CURDIR}/usr.sbin && ${MAKE} ${.MAKEFLAGS} install
|
|
|
|
|
cd ${.CURDIR}/gnu/libexec && ${MAKE} ${.MAKEFLAGS} install
|
|
|
|
|
cd ${.CURDIR}/gnu/usr.bin && ${MAKE} ${.MAKEFLAGS} install
|
1995-03-14 16:32:46 -05:00
|
|
|
cd ${.CURDIR}/gnu/usr.sbin && ${MAKE} ${.MAKEFLAGS} install
|
1994-10-15 17:19:56 -04:00
|
|
|
#.if defined(MAKE_EBONES) && !defined(NOCRYPT)
|
|
|
|
|
# cd ${.CURDIR}/eBones && ${MAKE} ${.MAKEFLAGS} installmost
|
|
|
|
|
#.endif
|
|
|
|
|
#.if !defined(NOSECURE) && !defined(NOCRYPT)
|
|
|
|
|
# cd ${.CURDIR}/secure && ${MAKE} ${.MAKEFLAGS} installmost
|
|
|
|
|
#.endif
|
|
|
|
|
|
|
|
|
|
most:
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo " Building programs only"
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
cd ${.CURDIR}/bin && ${MAKE} ${.MAKEFLAGS} all
|
|
|
|
|
cd ${.CURDIR}/sbin && ${MAKE} ${.MAKEFLAGS} all
|
|
|
|
|
cd ${.CURDIR}/libexec && ${MAKE} ${.MAKEFLAGS} all
|
|
|
|
|
cd ${.CURDIR}/usr.bin && ${MAKE} ${.MAKEFLAGS} all
|
|
|
|
|
cd ${.CURDIR}/usr.sbin && ${MAKE} ${.MAKEFLAGS} all
|
|
|
|
|
cd ${.CURDIR}/gnu/libexec && ${MAKE} ${.MAKEFLAGS} all
|
|
|
|
|
cd ${.CURDIR}/gnu/usr.bin && ${MAKE} ${.MAKEFLAGS} all
|
1995-03-28 13:14:17 -05:00
|
|
|
cd ${.CURDIR}/gnu/usr.sbin && ${MAKE} ${.MAKEFLAGS} all
|
1994-10-15 17:19:56 -04:00
|
|
|
#.if defined(MAKE_EBONES) && !defined(NOCRYPT)
|
|
|
|
|
# cd ${.CURDIR}/eBones && ${MAKE} ${.MAKEFLAGS} most
|
|
|
|
|
#.endif
|
|
|
|
|
#.if !defined(NOSECURE) && !defined(NOCRYPT)
|
|
|
|
|
# cd ${.CURDIR}/secure && ${MAKE} ${.MAKEFLAGS} most
|
|
|
|
|
#.endif
|
|
|
|
|
|
1994-08-13 18:47:28 -04:00
|
|
|
mk:
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo " Rebuilding ${DESTDIR}/usr/share/mk"
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
cd ${.CURDIR}/share/mk && ${MAKE} install
|
|
|
|
|
|
|
|
|
|
includes:
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo " Rebuilding ${DESTDIR}/usr/include"
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo
|
|
|
|
|
.if defined(CLOBBER)
|
1995-03-18 02:02:10 -05:00
|
|
|
rm -rf ${DESTDIR}/usr/include/*
|
|
|
|
|
mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
|
|
|
|
|
-p ${DESTDIR}/usr/include
|
1994-08-13 18:47:28 -04:00
|
|
|
.endif
|
|
|
|
|
cd ${.CURDIR}/include && ${MAKE} install
|
1994-11-07 19:55:08 -05:00
|
|
|
cd ${.CURDIR}/gnu/include && ${MAKE} install
|
1994-09-12 01:17:15 -04:00
|
|
|
cd ${.CURDIR}/gnu/lib/libreadline && ${MAKE} beforeinstall
|
1995-03-06 00:52:47 -05:00
|
|
|
cd ${.CURDIR}/gnu/lib/libregex && ${MAKE} beforeinstall
|
1994-09-12 01:17:15 -04:00
|
|
|
cd ${.CURDIR}/gnu/lib/libg++ && ${MAKE} beforeinstall
|
1994-10-11 19:33:00 -04:00
|
|
|
cd ${.CURDIR}/gnu/lib/libdialog && ${MAKE} beforeinstall
|
1994-09-29 09:06:54 -04:00
|
|
|
.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
|
|
|
|
|
cd ${.CURDIR}/eBones/include && ${MAKE} beforeinstall
|
1995-11-09 04:58:17 -05:00
|
|
|
cd ${.CURDIR}/eBones/lib/libkrb && ${MAKE} beforeinstall
|
1994-08-13 18:47:28 -04:00
|
|
|
.endif
|
|
|
|
|
cd ${.CURDIR}/lib/libc && ${MAKE} beforeinstall
|
|
|
|
|
cd ${.CURDIR}/lib/libcurses && ${MAKE} beforeinstall
|
|
|
|
|
cd ${.CURDIR}/lib/libedit && ${MAKE} beforeinstall
|
1994-09-19 01:32:31 -04:00
|
|
|
cd ${.CURDIR}/lib/libmd && ${MAKE} beforeinstall
|
1994-10-08 11:08:14 -04:00
|
|
|
cd ${.CURDIR}/lib/libmytinfo && ${MAKE} beforeinstall
|
|
|
|
|
cd ${.CURDIR}/lib/libncurses && ${MAKE} beforeinstall
|
1995-03-23 14:03:02 -05:00
|
|
|
.if !defined(WANT_CSRG_LIBM)
|
1994-09-30 12:08:47 -04:00
|
|
|
cd ${.CURDIR}/lib/msun && ${MAKE} beforeinstall
|
|
|
|
|
.endif
|
1995-03-19 12:24:24 -05:00
|
|
|
cd ${.CURDIR}/lib/libpcap && ${MAKE} beforeinstall
|
1994-08-13 18:47:28 -04:00
|
|
|
cd ${.CURDIR}/lib/librpcsvc && ${MAKE} beforeinstall
|
1994-09-29 17:20:12 -04:00
|
|
|
cd ${.CURDIR}/lib/libskey && ${MAKE} beforeinstall
|
1994-12-03 21:46:28 -05:00
|
|
|
cd ${.CURDIR}/lib/libtermcap && ${MAKE} beforeinstall
|
1995-01-20 15:28:31 -05:00
|
|
|
cd ${.CURDIR}/lib/libcom_err && ${MAKE} beforeinstall
|
1995-01-21 18:01:19 -05:00
|
|
|
cd ${.CURDIR}/lib/libss && ${MAKE} beforeinstall
|
1995-01-24 17:15:25 -05:00
|
|
|
cd ${.CURDIR}/lib/libforms && ${MAKE} beforeinstall
|
1995-01-24 17:30:37 -05:00
|
|
|
cd ${.CURDIR}/lib/libscsi && ${MAKE} beforeinstall
|
1994-08-13 18:47:28 -04:00
|
|
|
|
1995-01-03 17:03:25 -05:00
|
|
|
lib-tools:
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
1995-03-06 08:32:58 -05:00
|
|
|
@echo " Rebuilding tools needed to build the libraries"
|
1995-01-03 17:03:25 -05:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo
|
1995-03-23 18:40:29 -05:00
|
|
|
cd ${.CURDIR}/gnu/usr.bin/ld && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-01-03 17:03:25 -05:00
|
|
|
cd ${.CURDIR}/usr.bin/ar && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
|
cd ${.CURDIR}/usr.bin/ranlib && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
|
cd ${.CURDIR}/usr.bin/nm && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-01-21 18:01:19 -05:00
|
|
|
cd ${.CURDIR}/usr.bin/lex/lib && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-01-19 17:41:25 -05:00
|
|
|
cd ${.CURDIR}/usr.bin/compile_et && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR} && \
|
|
|
|
|
rm -f /usr/sbin/compile_et
|
|
|
|
|
cd ${.CURDIR}/usr.bin/mk_cmds && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-01-03 17:03:25 -05:00
|
|
|
|
1994-08-13 18:47:28 -04:00
|
|
|
libraries:
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo " Rebuilding ${DESTDIR}/usr/lib"
|
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo
|
|
|
|
|
.if defined(CLOBBER)
|
|
|
|
|
find ${DESTDIR}/usr/lib \! -name '*.s[ao].*' -a \! -type d | \
|
|
|
|
|
xargs rm -rf
|
|
|
|
|
.endif
|
1995-05-05 14:00:30 -04:00
|
|
|
.if exists(lib/libcompat)
|
|
|
|
|
cd ${.CURDIR}/lib/libcompat && \
|
1995-10-24 14:51:08 -04:00
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-05-05 14:00:30 -04:00
|
|
|
.endif
|
1995-05-12 23:34:23 -04:00
|
|
|
.if exists(lib/libncurses)
|
|
|
|
|
cd ${.CURDIR}/lib/libncurses && \
|
1995-10-24 14:51:08 -04:00
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-05-12 23:34:23 -04:00
|
|
|
.endif
|
|
|
|
|
.if exists(lib/libtermcap)
|
|
|
|
|
cd ${.CURDIR}/lib/libtermcap && \
|
1995-10-24 14:51:08 -04:00
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-05-12 23:34:23 -04:00
|
|
|
.endif
|
1995-05-05 14:00:30 -04:00
|
|
|
.if exists(gnu)
|
1994-09-02 22:38:28 -04:00
|
|
|
cd ${.CURDIR}/gnu/lib && \
|
1994-08-13 18:47:28 -04:00
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1994-08-25 06:47:30 -04:00
|
|
|
cd ${.CURDIR}/gnu/usr.bin/cc/libgcc && \
|
1994-08-13 18:47:28 -04:00
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-05-05 14:00:30 -04:00
|
|
|
.endif
|
1994-08-20 17:34:59 -04:00
|
|
|
.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
|
|
|
|
|
cd ${.CURDIR}/secure/lib && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
|
.endif
|
1994-08-25 10:45:46 -04:00
|
|
|
.if exists(lib)
|
1994-11-01 14:52:38 -05:00
|
|
|
cd ${.CURDIR}/lib/csu/i386 && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1994-08-13 18:47:28 -04:00
|
|
|
cd ${.CURDIR}/lib && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1994-08-25 10:45:46 -04:00
|
|
|
.endif
|
1995-10-24 14:51:08 -04:00
|
|
|
.if exists(usr.sbin/lex/lib)
|
1994-09-02 22:38:28 -04:00
|
|
|
cd ${.CURDIR}/usr.bin/lex/lib && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-10-24 14:51:08 -04:00
|
|
|
.endif
|
1994-09-29 09:06:54 -04:00
|
|
|
.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
|
1994-09-09 16:29:20 -04:00
|
|
|
cd ${.CURDIR}/eBones/des && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-09-16 23:38:54 -04:00
|
|
|
cd ${.CURDIR}/eBones/lib && \
|
1994-09-09 16:29:20 -04:00
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
|
.endif
|
1995-05-05 23:59:58 -04:00
|
|
|
.if exists(usr.sbin/pcvt/keycap)
|
|
|
|
|
cd ${.CURDIR}/usr.sbin/pcvt/keycap && \
|
1995-10-24 14:51:08 -04:00
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-05-05 23:59:58 -04:00
|
|
|
.endif
|
1994-08-13 18:47:28 -04:00
|
|
|
|
1995-10-26 05:24:59 -04:00
|
|
|
build-tools:
|
1994-08-13 18:47:28 -04:00
|
|
|
@echo "--------------------------------------------------------------"
|
1995-11-05 13:42:23 -05:00
|
|
|
@echo " Rebuilding ${DESTDIR} C compiler, make, symorder, sgmlfmt and zic(8)"
|
1994-08-13 18:47:28 -04:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
|
@echo
|
1994-08-25 06:47:30 -04:00
|
|
|
cd ${.CURDIR}/gnu/usr.bin/cc && \
|
1994-08-13 18:47:28 -04:00
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
|
cd ${.CURDIR}/usr.bin/make && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-10-24 04:37:28 -04:00
|
|
|
cd ${.CURDIR}/usr.bin/symorder && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-11-05 13:42:23 -05:00
|
|
|
cd ${.CURDIR}/usr.bin/sgmlfmt && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
|
cd ${.CURDIR}/share/sgml && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1995-08-30 13:27:57 -04:00
|
|
|
cd ${.CURDIR}/usr.sbin/zic && \
|
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1994-08-13 18:47:28 -04:00
|
|
|
|
1994-05-27 08:42:53 -04:00
|
|
|
.include <bsd.subdir.mk>
|