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

Annotation of src/kerberosIV/Makefile.inc, Revision 1.2

1.2     ! niklas      1: #      $OpenBSD$
1.1       tholo       2:
                      3: CFLAGS+=-I${.CURDIR}/../include
                      4: BINDIR?=/usr/sbin
                      5:
1.2     ! niklas      6: .if defined(OBJMACHINE)
        !             7: __objdir=      obj.${MACHINE}
        !             8: .else
        !             9: __objdir=      obj
        !            10: .endif
        !            11:
        !            12: .if exists(${.CURDIR}/../mk_cmds/${__objdir})
        !            13: MK_CMDS=${.CURDIR}/../mk_cmds/${__objdir}/mk_cmds
1.1       tholo      14: .else
                     15: MK_CMDS=${.CURDIR}/../mk_cmds/mk_cmds
                     16: .endif
                     17:
1.2     ! niklas     18: .if exists(${.CURDIR}/../compile_et/${__objdir})
        !            19: COMPILE_ET=${.CURDIR}/../compile_et/${__objdir}/compile_et
1.1       tholo      20: .else
                     21: COMPILE_ET=${.CURDIR}/../compile_et/compile_et
                     22: .endif
                     23:
1.2     ! niklas     24: .if exists(${.CURDIR}/../com_err/${__objdir})
        !            25: COM_ERR=-L${.CURDIR}/../com_err/${__objdir} -lcom_err_pic
1.1       tholo      26: .else
                     27: COM_ERR=-L${.CURDIR}/../com_err -lcom_err_pic
                     28: .endif