]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/Makefile
This commit was generated by cvs2svn to compensate for changes in r26175,
[FreeBSD/FreeBSD.git] / secure / Makefile
1 #       $Id$
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} MAKE_EBONES=yes cleandir; \
16         ${MAKE} ${MFLAGS} MAKE_EBONES=yes obj; \
17         ${MAKE} ${MFLAGS} MAKE_EBONES=yes 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>