libsecret/egg/Makefile.am
Stef Walter 17fade3173 Implement gsecret_service_get_secrets_for_paths() and friends
* Lots of testing, fine tuning and other bits too.
2011-11-12 08:08:12 +01:00

29 lines
531 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-hex.c egg-hex.h \
egg-secure-memory.c egg-secure-memory.h \
egg-testing.c egg-testing.h \
$(ENCRYPTION_SRCS) \
$(BUILT_SOURCES)
check-memory:
make -C tests check-memory