summaryrefslogtreecommitdiff
path: root/lib/libskey/Makefile
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1996-09-27 15:39:01 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1996-09-27 15:39:01 +0000
commitd5dd91cdf59d18f9cfff6072a73247438e00ea4e (patch)
tree6b4b783a2372708f840c8f51cf8935d0262edf80 /lib/libskey/Makefile
parent5fe26c50cba816ee0bd96be58ac1a22d8244265d (diff)
Deal with both MD4 and MD5 s/key's
Diffstat (limited to 'lib/libskey/Makefile')
-rw-r--r--lib/libskey/Makefile16
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>