15 lines
409 B
Makefile
15 lines
409 B
Makefile
lib_LTLIBRARIES = libft_ssl.la
|
|
|
|
libft_ssl_la_SOURCES = libft_ssl.c \
|
|
md5/md5.c \
|
|
md5/md5_init.c \
|
|
md5/md5_update.c \
|
|
md5/md5_final.c \
|
|
sha256/sha256_init.c \
|
|
sha256/sha256_update.c \
|
|
sha256/sha256_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
|