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

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

1.42    ! deraadt     1: #      $OpenBSD: Makefile,v 1.41 2015/11/26 19:01:47 deraadt Exp $
1.8       deraadt     2:
                      3: .include <bsd.own.mk>
1.1       deraadt     4:
                      5: PROG=  passwd
1.41      deraadt     6: SRCS=  local_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.42    ! deraadt    11: CFLAGS+= -I${.CURDIR} -DFORCE_DBOPEN
1.8       deraadt    12:
1.31      djm        13: CFLAGS+=-I${.CURDIR}/../../lib/libc/include
1.1       deraadt    14:
                     15: BINMODE=4555
1.16      art        16: BINOWN=root
1.1       deraadt    17:
1.18      deraadt    18: getpwent.o: getpwent.c
1.40      guenther   19:        ${COMPILE.c} -UYP -D'DEF_WEAK(x)=asm("")' \
                     20:            ${.CURDIR}/../../lib/libc/gen/getpwent.c
1.18      deraadt    21:
1.1       deraadt    22: .include <bsd.prog.mk>