23 lines
694 B
Makefile
23 lines
694 B
Makefile
lib_LTLIBRARIES = libft_ssl.la
|
|
|
|
libft_ssl_la_SOURCES = libft_ssl.c \
|
|
md5/md5.c \
|
|
md5/md5_init.c \
|
|
md5/md5_compress.c \
|
|
md5/md5_update.c \
|
|
md5/md5_final.c \
|
|
sha256/sha256.c \
|
|
sha256/sha256_init.c \
|
|
sha256/sha256_compress.c \
|
|
sha256/sha256_update.c \
|
|
sha256/sha256_final.c \
|
|
whirlpool/whirlpool.c \
|
|
whirlpool/whirlpool_init.c \
|
|
whirlpool/whirlpool_compress.c \
|
|
whirlpool/whirlpool_update.c \
|
|
whirlpool/whirlpool_final.c
|
|
|
|
AM_CFLAGS = -std=c99 $(STRICT_CFLAGS)
|
|
libft_ssl_la_CPPFLAGS = -I$(top_srcdir)/include
|
|
|
|
libft_ssl_la_LDFLAGS = -version-info 0:0:0
|