summaryrefslogtreecommitdiff
path: root/md5-crypt/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'md5-crypt/Makefile')
-rw-r--r--md5-crypt/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/md5-crypt/Makefile b/md5-crypt/Makefile
index 6216ddb437..b52e1ef012 100644
--- a/md5-crypt/Makefile
+++ b/md5-crypt/Makefile
@@ -32,6 +32,11 @@ extra-libs-others := $(extra-libs)
md5-routines := crypt-entry md5-crypt md5
libcrypt-routines := $(md5-routines)
+libcrypt-map := libcrypt.map
+
+onlymd5-routines := onlymd5-entry md5-crypt md5
+distribute += onlymd5-entry.c
+extra-objs := onlymd5-entry.o
include ../Makeconfig
@@ -41,6 +46,8 @@ ifeq ($(crypt-in-libc),yes)
routines += $(libcrypt-routines)
endif
+$(objpfx)md5test: $(objpfx)md5.o
+
include ../Rules
ifeq ($(build-shared),yes)
@@ -60,7 +67,7 @@ endif
define o-iterator-doit
$(objpfx)$(patsubst %,$(libtype$o),md5crypt): \
- $(md5-routines:%=$(objpfx)%$o); $$(build-extra-lib)
+ $(onlymd5-routines:%=$(objpfx)%$o); $$(build-extra-lib)
endef
object-suffixes-left = $(object-suffixes)
include $(patsubst %,$(..)o-iterator.mk,$(object-suffixes))
@@ -69,3 +76,4 @@ include $(patsubst %,$(..)o-iterator.mk,$(object-suffixes))
# This ensures they will load libc.so for needed symbols if loaded by
# a statically-linked program that hasn't already loaded it.
$(objpfx)libcrypt.so: $(common-objpfx)libc.so
+$(objpfx)libmd5crypt.so: $(common-objpfx)libc.so