You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
822 B
Makefile
42 lines
822 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
|
$(LIBSXMP_CFLAGS) -I../include
|
|
|
|
AM_CFLAGS =\
|
|
-Wall\
|
|
-g
|
|
|
|
lib_LTLIBRARIES = libsxt.la
|
|
|
|
|
|
libsxt_la_SOURCES = \
|
|
core.c base64.c misc.c safebuffer.c rdb.c ppkp_ops.c \
|
|
bcrypt.c blowfish.c ciphers.c lcrypt.c \
|
|
fe25519.c ge25519.c sc25519.c ed25519.c
|
|
|
|
libsxt_la_LDFLAGS =
|
|
|
|
libsxt_la_LIBADD = -lpthread -lcrypto $(OPENSSL_LIBS)
|
|
|
|
if COND_WIN32
|
|
|
|
libsxt_la_LDFLAGS += -no-undefined
|
|
libsxt_la_LIBADD += -lmman -luuid /mingw64/lib/libtdata.a
|
|
|
|
else
|
|
|
|
libsxt_la_LIBADD += $(LIBUUID_LIBS) ../tdata/.libs/libtdata.la
|
|
|
|
endif !COND_WIN32
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libsxt.pc
|
|
|
|
EXTRA_DIST = \
|
|
libsxt.pc.in
|
|
|