Remove powerpc, sparc fdim inlines (bug 22987).
[glibc.git] / crypt / Makefile
blob303800df73496cb3666efba075df6e274c3c1735
1 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
19 # Sub-makefile for crypt() portion of the library.
21 subdir := crypt
23 include ../Makeconfig
25 headers := crypt.h
27 extra-libs := libcrypt
28 extra-libs-others := $(extra-libs)
30 libcrypt-routines := crypt-entry md5-crypt sha256-crypt sha512-crypt crypt \
31 crypt_util
33 tests := cert md5c-test sha256c-test sha512c-test badsalttest
35 ifeq ($(crypt-in-libc),yes)
36 routines += $(libcrypt-routines)
37 endif
39 ifeq ($(nss-crypt),yes)
40 nss-cpp-flags := -DUSE_NSS \
41 -I$(shell nss-config --includedir) -I$(shell nspr-config --includedir)
42 CPPFLAGS-sha256-crypt.c += $(nss-cpp-flags)
43 CPPFLAGS-sha512-crypt.c += $(nss-cpp-flags)
44 CPPFLAGS-md5-crypt.c += $(nss-cpp-flags)
45 LDLIBS-crypt.so = -lfreebl3
46 else
47 libcrypt-routines += md5 sha256 sha512
49 tests += md5test sha256test sha512test
51 # The test md5test-giant uses up to 400 MB of RSS and runs on a fast
52 # machine over a minute.
53 xtests = md5test-giant
54 endif
56 include ../Rules
58 ifneq ($(nss-crypt),yes)
59 md5-routines := md5 $(filter md5%,$(libcrypt-sysdep_routines))
60 sha256-routines := sha256 $(filter sha256%,$(libcrypt-sysdep_routines))
61 sha512-routines := sha512 $(filter sha512%,$(libcrypt-sysdep_routines))
63 $(objpfx)md5test: $(patsubst %, $(objpfx)%.o,$(md5-routines))
64 $(objpfx)md5test-giant: $(patsubst %, $(objpfx)%.o,$(md5-routines))
65 $(objpfx)sha256test: $(patsubst %, $(objpfx)%.o,$(sha256-routines))
66 $(objpfx)sha512test: $(patsubst %, $(objpfx)%.o,$(sha512-routines))
67 endif
69 ifeq (yes,$(build-shared))
70 $(addprefix $(objpfx),$(tests)): $(objpfx)libcrypt.so
71 else
72 $(addprefix $(objpfx),$(tests)): $(objpfx)libcrypt.a
73 endif