]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/Makefile
Remove useless `BINOWN=root' now that it is the default.
[FreeBSD/FreeBSD.git] / secure / Makefile
1 #       $Id: Makefile,v 1.11 1997/02/22 14:40:11 peter Exp $
2
3 # lib must be first, or it will not work.  This is because we reference
4 # the lib's in the directory where they are built from the binaries we
5 # want to build.
6
7 SUBDIR= lib usr.bin
8
9 SDIR= ${.CURDIR}/..
10
11 CODAI=  ${MAKE} ${MFLAGS} cleandir; \
12         ${MAKE} ${MFLAGS} obj; \
13         ${MAKE} ${MFLAGS} depend all install
14
15 CODAD=  ${MAKE} ${MFLAGS} cleandir; \
16         ${MAKE} ${MFLAGS} obj; \
17         ${MAKE} ${MFLAGS} depend all distribute
18
19 # These are the programs which depend on secure libs
20 sprog:
21         cd ${SDIR}/bin/ed; ${CODAI}
22         cd ${SDIR}/sbin/init; ${CODAI}
23
24 bootstrap:
25         ( cd include; ${MAKE} ${MFLAGS} install )
26         ( cd lib; ${MAKE} ${MFLAGS} depend all install )
27         ${MAKE} ${MFLAGS} cleandir
28         ${MAKE} ${MFLAGS} obj
29         ${MAKE} ${MFLAGS} depend all install sprog
30
31 help-distribute:        distribute
32         cd ${SDIR}/bin/ed; ${CODAD}
33         cd ${SDIR}/sbin/init; ${CODAD}
34
35 .include <bsd.subdir.mk>