1994-08-13 22:47:28 +00:00
|
|
|
#
|
1994-08-25 14:45:46 +00:00
|
|
|
# $Id: Makefile,v 1.11 1994/08/25 10:47:30 paul Exp $
|
1994-08-13 22:47:28 +00:00
|
|
|
#
|
|
|
|
# Make command line options:
|
|
|
|
# -DCLOBBER will remove /usr/include and MOST of /usr/lib
|
|
|
|
# -DMAKE_LOCAL to add ./local to the SUBDIR list
|
|
|
|
# -DMAKE_PORTS to add ./ports to the SUBDIR list
|
|
|
|
# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
|
1994-08-20 21:34:59 +00:00
|
|
|
# -DNOCRYPT will prevent building of crypt versions
|
|
|
|
# XXX2 -DNOKERBEROS do not build Kerberos
|
1994-08-13 22:47:28 +00:00
|
|
|
# -DNOOBJDIR do not run ``${MAKE} obj''
|
|
|
|
# -DNOPROFILE do not build profiled libraries
|
1994-08-20 21:34:59 +00:00
|
|
|
# -DNOSECURE do not go into secure subdir
|
1994-08-13 22:47:28 +00:00
|
|
|
#
|
1994-08-20 21:34:59 +00:00
|
|
|
# XXX2 Mandatory, and Kerberos will not build sucessfully yet
|
1994-05-27 12:42:53 +00:00
|
|
|
|
1994-08-13 22:47:28 +00:00
|
|
|
# Put initial settings here.
|
1994-08-20 21:34:59 +00:00
|
|
|
NOKERBEROS= yes
|
1994-08-13 22:47:28 +00:00
|
|
|
SUBDIR=
|
1994-05-27 12:42:53 +00:00
|
|
|
|
1994-08-13 22:47:28 +00:00
|
|
|
.if exists(bin)
|
|
|
|
SUBDIR+= bin
|
|
|
|
.endif
|
|
|
|
.if exists(contrib)
|
|
|
|
SUBDIR+= contrib
|
|
|
|
.endif
|
|
|
|
.if exists(etc)
|
|
|
|
SUBDIR+= etc
|
|
|
|
.endif
|
|
|
|
.if exists(games)
|
|
|
|
SUBDIR+= games
|
|
|
|
.endif
|
|
|
|
.if exists(gnu)
|
|
|
|
SUBDIR+= gnu
|
|
|
|
.endif
|
|
|
|
.if exists(include)
|
|
|
|
SUBDIR+= include
|
|
|
|
.endif
|
|
|
|
.if exists(lib)
|
|
|
|
SUBDIR+= lib
|
|
|
|
.endif
|
1994-08-20 21:34:59 +00:00
|
|
|
.if exists(kerberosIV) && !defined(NOCRYPT) && !defined(NOKERBEROS)
|
1994-08-13 22:47:28 +00:00
|
|
|
SUBDIR+= kerberosIV
|
|
|
|
.endif
|
|
|
|
.if exists(libexec)
|
|
|
|
SUBDIR+= libexec
|
|
|
|
.endif
|
|
|
|
.if exists(sbin)
|
|
|
|
SUBDIR+= sbin
|
|
|
|
.endif
|
1994-08-20 21:34:59 +00:00
|
|
|
.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
|
|
|
|
SUBDIR+= secure
|
|
|
|
.endif
|
1994-08-13 22:47:28 +00:00
|
|
|
.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
|
|
|
|
|
|
|
|
# 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
|
|
|
|
.else
|
|
|
|
CLEANDIR= cleandir
|
|
|
|
.endif
|
|
|
|
|
1994-08-25 14:45:46 +00:00
|
|
|
world: directories cleandist mk includes libraries tools
|
1994-08-13 22:47:28 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo " Rebuilding ${DESTDIR} The whole thing"
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo
|
|
|
|
${MAKE} depend all install
|
|
|
|
cd ${.CURDIR}/share/man && ${MAKE} makedb
|
|
|
|
|
|
|
|
directories:
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo " Making directories"
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo " XXX Not yet ready in 2.0.0"
|
|
|
|
# XXX cd ${.CURDIR}/etc && ${MAKE} distrib-dirs
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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)
|
|
|
|
rm -rf ${DESTDIR}/usr/include
|
|
|
|
mkdir ${DESTDIR}/usr/include
|
|
|
|
chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include
|
|
|
|
chmod 755 ${DESTDIR}/usr/include
|
|
|
|
.endif
|
|
|
|
cd ${.CURDIR}/include && ${MAKE} install
|
1994-08-14 16:52:44 +00:00
|
|
|
#XXX cd ${.CURDIR}/gnu/lib/libg++ && ${MAKE} beforeinstall
|
1994-08-25 10:47:30 +00:00
|
|
|
#XXX cd ${.CURDIR}/gnu/usr.bin/cc/libobjc && ${MAKE} beforeinstall
|
1994-08-20 21:34:59 +00:00
|
|
|
.if !defined(NOCRYPT) && !defined(NOKERBEROS)
|
1994-08-13 22:47:28 +00:00
|
|
|
cd ${.CURDIR}/kerberosIV/include && ${MAKE} install
|
|
|
|
.endif
|
|
|
|
cd ${.CURDIR}/lib/libc && ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libcurses && ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libedit && ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/librpcsvc && ${MAKE} beforeinstall
|
|
|
|
|
|
|
|
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
|
|
|
|
# XXX The whole GNU block should be doable in one command, as soon # as libg++ works on FreeBSD 2.0 I will try that out
|
|
|
|
#XXX cd ${.CURDIR}/gnu/lib/libg++ && \
|
|
|
|
#XXX ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
cd ${.CURDIR}/gnu/lib/libmalloc && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
cd ${.CURDIR}/gnu/lib/libreadline && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
cd ${.CURDIR}/gnu/lib/libregex && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1994-08-25 10:47:30 +00:00
|
|
|
cd ${.CURDIR}/gnu/usr.bin/cc/libgcc && \
|
1994-08-13 22:47:28 +00:00
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1994-08-20 21:34:59 +00:00
|
|
|
.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
|
|
|
|
cd ${.CURDIR}/secure/lib && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
.endif
|
1994-08-25 14:45:46 +00:00
|
|
|
.if exists(sys)
|
|
|
|
cd ${.CURDIR}/sys/libkern && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
.endif
|
|
|
|
.if exists(lib)
|
1994-08-13 22:47:28 +00:00
|
|
|
cd ${.CURDIR}/lib && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1994-08-25 14:45:46 +00:00
|
|
|
.endif
|
1994-08-13 22:47:28 +00:00
|
|
|
# You need the lex lib before you can build kerberosIV
|
|
|
|
#XXX # We don't have lex in the 2.0 tree yet!
|
|
|
|
#XXX cd ${.CURDIR}/usr.bin/lex/lib && \
|
|
|
|
#XXX ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
1994-08-20 21:34:59 +00:00
|
|
|
.if !defined(NOCRYPT) && !defined(NOKERBEROS)
|
1994-08-13 22:47:28 +00:00
|
|
|
cd ${.CURDIR}/kerberosIV/acl && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
cd ${.CURDIR}/kerberosIV/des && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
cd ${.CURDIR}/kerberosIV/kdb && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
cd ${.CURDIR}/kerberosIV/krb && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
tools:
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo " Rebuilding ${DESTDIR} Compiler and Make"
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo
|
1994-08-25 10:47:30 +00:00
|
|
|
cd ${.CURDIR}/gnu/usr.bin/cc && \
|
1994-08-13 22:47:28 +00:00
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
cd ${.CURDIR}/usr.bin/make && \
|
|
|
|
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
|
|
|
|
1994-05-27 12:42:53 +00:00
|
|
|
.include <bsd.subdir.mk>
|