libsecret/egg/Makefile.am

23 lines
421 B
Makefile
Raw Normal View History

SUBDIRS = . tests
noinst_LTLIBRARIES = \
libegg.la
EXTRA_DIST = egg-testing.h
INCLUDES = \
-I$(top_srcdir)
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)