mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-24 22:21:16 +08:00
Add crypt_add_format(), crypt_r(), crypt_md5_r(), crypt_sha256_r() and crypt_sha512_r().
18 lines
392 B
Makefile
18 lines
392 B
Makefile
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
|