summaryrefslogtreecommitdiff
path: root/secure/lib/libcrypt/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'secure/lib/libcrypt/Makefile')
-rw-r--r--secure/lib/libcrypt/Makefile61
1 files changed, 0 insertions, 61 deletions
diff --git a/secure/lib/libcrypt/Makefile b/secure/lib/libcrypt/Makefile
deleted file mode 100644
index 25e11bc7d596..000000000000
--- a/secure/lib/libcrypt/Makefile
+++ /dev/null
@@ -1,61 +0,0 @@
-#
-# $Id: Makefile,v 1.13 1997/09/05 12:21:22 peter Exp $
-#
-
-LCRYPTBASE= libcrypt
-LDCRYPTBASE= libdescrypt
-
-.if ${OBJFORMAT} != elf
-LCRYPTSO= $(LCRYPTBASE).so.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-LDCRYPTSO= $(LDCRYPTBASE).so.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-.else
-LCRYPTSO= $(LCRYPTBASE).so.$(SHLIB_MAJOR)
-LDCRYPTSO= $(LDCRYPTBASE).so.$(SHLIB_MAJOR)
-.endif
-
-.PATH: ${.CURDIR}/../../../lib/libmd
-
-LIB= descrypt
-SRCS= crypt.c crypt-md5.c md5c.c
-MAN3= crypt.3
-CFLAGS+= -I${.CURDIR}/../../../lib/libmd -Wall
-PRECIOUSLIB= yes
-
-.if ${OBJFORMAT} == elf
-SONAME= ${LCRYPTBASE}.so.$(SHLIB_MAJOR)
-.endif
-
-test:
- cd test ; make test ; make clean
-
-.include <bsd.lib.mk>
-
-# We only install the links if they do not already exist.
-# This may have to be revised
-afterinstall:
-.if !defined(NOPIC) && defined(SHLIB_MAJOR)
- @cd $(DESTDIR)/$(LIBDIR); \
- if [ ! -e $(LCRYPTSO) ]; then \
- rm -f $(LCRYPTSO); \
- ln -s $(LDCRYPTSO) $(LCRYPTSO); \
- fi
-.endif
-.if !defined(NOPIC) && defined(SHLIB_MAJOR) && ${OBJFORMAT} == elf
- @cd $(DESTDIR)/$(LIBDIR); \
- if [ ! -e $(LCRYPTBASE).so ]; then \
- rm -f $(LCRYPTBASE).so; \
- ln -s $(LDCRYPTBASE).so libcrypt.so; \
- fi
-.endif
- @cd $(DESTDIR)/$(LIBDIR); \
- if [ ! -e $(LCRYPTBASE).a ]; then \
- rm -f $(LCRYPTBASE).a; \
- ln -s $(LDCRYPTBASE).a libcrypt.a; \
- fi
-.if !defined(NOPROFILE)
- @cd $(DESTDIR)/$(LIBDIR); \
- if [ ! -e $(LCRYPTBASE)_p.a ]; then \
- rm -f $(LCRYPTBASE)_p.a; \
- ln -s $(LDCRYPTBASE)_p.a libcrypt_p.a; \
- fi
-.endif