mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-18 17:00:49 +01:00
9c0dc173cc
specified in the top level Makefiles.
20 lines
530 B
Makefile
20 lines
530 B
Makefile
# $Id: Makefile,v 1.6 1995/07/19 17:44:32 wpaul Exp $
|
|
# @(#)Makefile 8.3 (Berkeley) 4/2/94
|
|
|
|
PROG= yppasswdd
|
|
MAN8= yppasswdd.8
|
|
|
|
SRCS= yppasswdd.c update.c pw_copy.c pw_util.c
|
|
|
|
LDADD= -lcrypt -lrpcsvc
|
|
CFLAGS+=-DCRYPT -I${.CURDIR} -I${.CURDIR}/../../../usr.sbin/vipw \
|
|
-I${.CURDIR}/../../../usr.bin/chpass
|
|
CFLAGS+=-DVERSION=\"0.7\" -DYPLIBDIR=\"/usr/libexec\" -D_GNU_SOURCE
|
|
|
|
afterinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/yppwupdate \
|
|
${DESTDIR}/usr/libexec/yppwupdate
|
|
|
|
.include <bsd.prog.mk>
|