diff options
Diffstat (limited to 'lib/libskey/Makefile')
-rw-r--r-- | lib/libskey/Makefile | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/lib/libskey/Makefile b/lib/libskey/Makefile index 7e616b17dc6..31cbc14f78b 100644 --- a/lib/libskey/Makefile +++ b/lib/libskey/Makefile @@ -1,7 +1,17 @@ -# $Id: Makefile,v 1.1 1995/10/18 08:43:11 deraadt Exp $ +# $Id: Makefile,v 1.2 1996/09/27 15:38:57 millert Exp $ LIB= skey -SRCS= skeylogin.c skeysubr.c md4.c put.c -CFLAGS+= -DUSE_ECHO +SRCS= skeylogin.c skeysubr.c put.c +HDRS= skey.h +#CFLAGS+= -DSKEY_MDX_DEFAULT=4 + +includes: + @cd ${.CURDIR}; for i in $(HDRS); do \ + j="cmp -s $$i ${DESTDIR}/usr/include/`basename $$i` || \ + install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${DESTDIR}/usr/include"; \ + echo $$j; \ + eval "$$j"; \ + done .include <bsd.lib.mk> |