diff options
author | rgrimes <rgrimes@FreeBSD.org> | 2000-01-14 07:57:47 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 2000-01-14 07:57:47 +0000 |
commit | c127d0e61e914c6951d98986385ccb730b115cf9 (patch) | |
tree | e0bf2775a4898eda7838b05b1a539892d8ea781c /lib/libmd/Makefile | |
parent | 2801ff847ca9459d227f155a4dedd395b7d35a30 (diff) | |
download | FreeBSD-src-c127d0e61e914c6951d98986385ccb730b115cf9.zip FreeBSD-src-c127d0e61e914c6951d98986385ccb730b115cf9.tar.gz |
Replace beforeinstall target with new variables used by .mk system.
Reviewed by: marcel, and make world
Diffstat (limited to 'lib/libmd/Makefile')
-rw-r--r-- | lib/libmd/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/libmd/Makefile b/lib/libmd/Makefile index 3264f0a..5762808 100644 --- a/lib/libmd/Makefile +++ b/lib/libmd/Makefile @@ -4,6 +4,8 @@ LIB= md SRCS= md2c.c md4c.c md5c.c md2hl.c md4hl.c md5hl.c \ rmd160c.c rmd160hl.c \ sha0c.c sha0hl.c sha1c.c sha1hl.c +INCS= md2.h md4.h md5.h ripemd.h sha.h + MAN3+= md2.3 md4.3 md5.3 ripemd.3 sha.3 MLINKS+=md2.3 MD2Init.3 md2.3 MD2Update.3 md2.3 MD2Final.3 MLINKS+=md2.3 MD2End.3 md2.3 MD2File.3 md2.3 MD2Data.3 @@ -171,10 +173,4 @@ test: md2.ref md4.ref md5.ref sha0.ref rmd160.ref sha1.ref @${ECHO} SHA-1 passed test -rm -f shadriver -beforeinstall: -.for i in md2.h md4.h md5.h ripemd.h sha.h - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/$i \ - ${DESTDIR}/usr/include -.endfor - .include <bsd.lib.mk> |