97fe7f477f
target. Reviewed by: <many different folks> Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su>
36 lines
903 B
Makefile
36 lines
903 B
Makefile
# $Id: Makefile,v 1.11 1997/02/22 14:40:11 peter Exp $
|
|
|
|
# lib must be first, or it will not work. This is because we reference
|
|
# the lib's in the directory where they are built from the binaries we
|
|
# want to build.
|
|
|
|
SUBDIR= lib usr.bin
|
|
|
|
SDIR= ${.CURDIR}/..
|
|
|
|
CODAI= ${MAKE} ${MFLAGS} cleandir; \
|
|
${MAKE} ${MFLAGS} obj; \
|
|
${MAKE} ${MFLAGS} depend all install
|
|
|
|
CODAD= ${MAKE} ${MFLAGS} cleandir; \
|
|
${MAKE} ${MFLAGS} obj; \
|
|
${MAKE} ${MFLAGS} depend all distribute
|
|
|
|
# These are the programs which depend on secure libs
|
|
sprog:
|
|
cd ${SDIR}/bin/ed; ${CODAI}
|
|
cd ${SDIR}/sbin/init; ${CODAI}
|
|
|
|
bootstrap:
|
|
( cd include; ${MAKE} ${MFLAGS} install )
|
|
( cd lib; ${MAKE} ${MFLAGS} depend all install )
|
|
${MAKE} ${MFLAGS} cleandir
|
|
${MAKE} ${MFLAGS} obj
|
|
${MAKE} ${MFLAGS} depend all install sprog
|
|
|
|
help-distribute: distribute
|
|
cd ${SDIR}/bin/ed; ${CODAD}
|
|
cd ${SDIR}/sbin/init; ${CODAD}
|
|
|
|
.include <bsd.subdir.mk>
|