[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / passwd

Annotation of src/usr.bin/passwd/Makefile, Revision 1.40

1.40    ! guenther    1: #      $OpenBSD: Makefile,v 1.39 2014/11/20 14:53:15 tedu Exp $
1.8       deraadt     2:
                      3: .include <bsd.own.mk>
1.1       deraadt     4:
                      5: PROG=  passwd
1.39      tedu        6: SRCS=  local_passwd.c yp_passwd.c passwd.c getpwent.c \
1.19      provos      7:        pwd_check.c
1.7       deraadt     8: .PATH:  ${.CURDIR}/../../lib/libc/gen
1.13      deraadt     9: DPADD+= ${LIBRPCSVC} ${LIBUTIL}
1.11      etheisen   10: LDADD+= -lrpcsvc -lutil
1.12      provos     11: CFLAGS+= -I${.CURDIR}
1.8       deraadt    12:
1.31      djm        13: CFLAGS+=-I${.CURDIR}/../../lib/libc/include
1.20      espie      14: .if (${YP:L} == "yes")
1.31      djm        15: CFLAGS+=-DYP -I${.CURDIR}/../../lib/libc/yp
1.1       deraadt    16: .endif
                     17:
                     18: BINMODE=4555
1.16      art        19: BINOWN=root
1.1       deraadt    20:
1.18      deraadt    21: getpwent.o: getpwent.c
1.40    ! guenther   22:        ${COMPILE.c} -UYP -D'DEF_WEAK(x)=asm("")' \
        !            23:            ${.CURDIR}/../../lib/libc/gen/getpwent.c
1.18      deraadt    24:
1.1       deraadt    25: .include <bsd.prog.mk>