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

Annotation of src/usr.bin/chpass/Makefile, Revision 1.16

1.16    ! deraadt     1: #      $OpenBSD: Makefile,v 1.15 2016/03/30 06:38:45 jmc Exp $
1.1       deraadt     2:
1.4       deraadt     3: .include <bsd.own.mk>
                      4:
1.1       deraadt     5: PROG=  chpass
1.14      deraadt     6: SRCS=  chpass.c edit.c field.c table.c util.c getpwent.c
1.1       deraadt     7: BINOWN=        root
                      8: BINMODE=4555
1.2       deraadt     9: .PATH: ${.CURDIR}/../../lib/libc/gen
1.1       deraadt    10: LINKS= ${BINDIR}/chpass ${BINDIR}/chfn ${BINDIR}/chpass ${BINDIR}/chsh
1.16    ! deraadt    11: CFLAGS+=-I${.CURDIR}/../../lib/libc/include -DFORCE_DBOPEN
1.14      deraadt    12: DPADD+= ${LIBUTIL}
                     13: LDADD+= -lutil
1.1       deraadt    14:
                     15: .include <bsd.prog.mk>
                     16:
                     17: getpwent.o: getpwent.c
1.13      guenther   18:        ${COMPILE.c} -UYP -D'DEF_WEAK(x)=asm("")' \
                     19:            ${.CURDIR}/../../lib/libc/gen/getpwent.c