mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 12:48:51 +00:00
23 lines
421 B
Makefile
23 lines
421 B
Makefile
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)
|