mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 20:58:52 +00:00
4893c73c5b
* Cleanup secure memory allocator for valgrind. * Bring valgrind headers in. * Add lots of suppressions for glib, gdbus, gcrypt * Fix up a bunch of bugs where things weren't getting freed * Add new 'make check-memory' target
25 lines
465 B
Makefile
25 lines
465 B
Makefile
SUBDIRS = . tests
|
|
|
|
noinst_LTLIBRARIES = \
|
|
libegg.la
|
|
|
|
EXTRA_DIST = egg-testing.h
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/build \
|
|
-DWITH_VALGRIND
|
|
|
|
if WITH_GCRYPT
|
|
ENCRYPTION_SRCS = egg-dh.c egg-dh.h
|
|
ENCRYPTION_SRCS += egg-hkdf.c egg-hkdf.h
|
|
ENCRYPTION_SRCS += egg-libgcrypt.c egg-libgcrypt.h
|
|
else
|
|
ENCRYPTION_SRCS =
|
|
endif
|
|
|
|
libegg_la_SOURCES = \
|
|
egg-secure-memory.c egg-secure-memory.h \
|
|
egg-testing.c egg-testing.h \
|
|
$(ENCRYPTION_SRCS) \
|
|
$(BUILT_SOURCES)
|