From 446632197c7f093ed6d0f4d48dcb03e6254828fe Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 13 Nov 2014 15:13:24 +0100 Subject: Add crypt_r(), etc. Add crypt_add_format(), crypt_r(), crypt_md5_r(), crypt_sha256_r() and crypt_sha512_r(). --- cpukit/libcrypt/Makefile.am | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 cpukit/libcrypt/Makefile.am (limited to 'cpukit/libcrypt/Makefile.am') diff --git a/cpukit/libcrypt/Makefile.am b/cpukit/libcrypt/Makefile.am new file mode 100644 index 0000000000..fe174d4e9d --- /dev/null +++ b/cpukit/libcrypt/Makefile.am @@ -0,0 +1,17 @@ +include $(top_srcdir)/automake/compile.am + +include_HEADERS = + +noinst_LIBRARIES = libcrypt.a + +libcrypt_a_CPPFLAGS = $(AM_CPPFLAGS) + +libcrypt_a_SOURCES = +libcrypt_a_SOURCES += crypt.c +libcrypt_a_SOURCES += crypt-md5.c +libcrypt_a_SOURCES += crypt-sha256.c +libcrypt_a_SOURCES += crypt-sha512.c +libcrypt_a_SOURCES += misc.c + +include $(srcdir)/preinstall.am +include $(top_srcdir)/automake/local.am -- cgit v1.2.3