summaryrefslogtreecommitdiffstats
path: root/lib/libcrypt/Makefile
blob: 960e2fb4d58b862d90048a635ba40e474b2e7441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#
# $Id: Makefile,v 1.3 1994/08/12 21:12:37 csgr Exp $
#

LCRYPTBASE= 	libcrypt
LCRYPTSO=	$(LCRYPTBASE).so.$(SHLIB_MAJOR).$(SHLIB_MINOR)


LSCRYPTBASE= 	libscrypt
LSCRYPTSO=	$(LSCRYPTBASE).so.$(SHLIB_MAJOR).$(SHLIB_MINOR)

# called libscrypt - for scramble crypt!
LIB=	scrypt
SRCS=	crypt.c

# We only install the links if they do not already exist.
# This may have to be revised
afterinstall:
.if !defined(NOPIC) 
	@cd $(DESTDIR)/$(LIBDIR); \
	if [ ! -e $(LCRYPTSO) ]; then \
	rm -f $(LCRYPTSO); \
	ln -s $(LSCRYPTSO) $(LCRYPTSO); \
	fi
.endif
	@cd  $(DESTDIR)/$(LIBDIR); \
	if [ ! -e $(LCRYPTBASE).a ]; then \
	rm -f $(LCRYPTBASE).a; \
	ln -s $(LSCRYPTBASE).a libcrypt.a; \
	fi
.if !defined(NOPROFILE)
	@cd  $(DESTDIR)/$(LIBDIR); \
	if [ ! -e $(LCRYPTBASE)_p.a ]; then \
	rm -f $(LCRYPTBASE)_p.a; \
	ln -s $(LSCRYPTBASE)_p.a libcrypt_p.a; \
	fi
.endif

.include <bsd.lib.mk>
OpenPOWER on IntegriCloud