[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / kerberosIV

Annotation of src/kerberosIV/Makefile, Revision 1.4

1.4     ! tholo       1: #      $OpenBSD: Makefile,v 1.3 1996/05/15 08:51:59 niklas Exp $
1.1       tholo       2: #      from @(#)Makefile       5.1 (Berkeley) 6/25/90
                      3:
                      4: # do compile_et and mk_cmds first, used by other directories
                      5:
1.4     ! tholo       6: .ifnmake install
1.1       tholo       7: SUBDIR=        compile_et mk_cmds
                      8: .endif
                      9:
1.4     ! tholo      10: .ifmake includes
        !            11: SUBDIR+=include
        !            12: .endif
        !            13:
1.1       tholo      14: SUBDIR+=acl com_err des krb kadm kafs kdb ss
                     15:
                     16: SUBDIR+=ext_srvtab kadmin kadmind kdb_destroy kdb_edit kdb_init kdb_util \
                     17:        kdestroy kerberos kinit klist kpasswdd kprop kpropd ksrvtgt ksrvutil \
                     18:        kstash make_keypair register registerd
                     19:
                     20: SUBDIR+=man
1.2       tholo      21:
                     22: build:
1.4     ! tholo      23:        (cd ${.CURDIR}/include && ${MAKE} includes)
1.2       tholo      24:        ${MAKE} cleandir
1.4     ! tholo      25:        ${MAKE} includes
1.2       tholo      26:        (cd ${.CURDIR}/compile_et && ${MAKE} depend && ${MAKE})
                     27:        (cd ${.CURDIR}/mk_cmds && ${MAKE} depend && ${MAKE})
                     28:        (cd ${.CURDIR}/acl && ${MAKE} depend && ${MAKE} && ${MAKE} install)
                     29:        (cd ${.CURDIR}/com_err && ${MAKE} depend && ${MAKE} && ${MAKE} install)
                     30:        (cd ${.CURDIR}/des && ${MAKE} depend && ${MAKE} && ${MAKE} install)
                     31:        (cd ${.CURDIR}/krb && ${MAKE} depend && ${MAKE} && ${MAKE} install)
                     32:        (cd ${.CURDIR}/kadm && ${MAKE} depend && ${MAKE} && ${MAKE} install)
                     33:        (cd ${.CURDIR}/kafs && ${MAKE} depend && ${MAKE} && ${MAKE} install)
                     34:        (cd ${.CURDIR}/kdb && ${MAKE} depend && ${MAKE} && ${MAKE} install)
                     35:        (cd ${.CURDIR}/ss && ${MAKE} depend && ${MAKE} && ${MAKE} install)
1.1       tholo      36:
1.3       niklas     37: # Since depending need to have some dynamically built sources available,
                     38: # we need to build the generators first.
                     39: beforedepend:
                     40:        (cd ${.CURDIR}/compile_et && ${MAKE} depend && ${MAKE})
                     41:        (cd ${.CURDIR}/mk_cmds && ${MAKE} depend && ${MAKE})
                     42:
                     43: .include <bsd.dep.mk>
1.1       tholo      44: .include <bsd.subdir.mk>