summaryrefslogtreecommitdiff
path: root/daemon/ssh-agent/Makefile.am
blob: 8d643b80e0badf5ace49cc2a0031bb54374ac8b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39

INCLUDES = \
	-I$(top_builddir) \
	-I$(top_srcdir) \
	-I$(top_srcdir)/pkcs11 \
	$(GOBJECT_CFLAGS) \
	$(GLIB_CFLAGS) \
	-DGCK_API_SUBJECT_TO_CHANGE

# ------------------------------------------------------------------------------
# The ssh-agent component code

noinst_LTLIBRARIES = \
	libgkd-ssh-agent.la

libgkd_ssh_agent_la_SOURCES = \
	gkd-ssh-agent.c gkd-ssh-agent.h \
	gkd-ssh-agent-private.h \
	gkd-ssh-agent-ops.c \
	gkd-ssh-agent-proto.c

# ------------------------------------------------------------------------------
# Standalone binary

noinst_PROGRAMS = \
	gkd-ssh-agent-standalone

gkd_ssh_agent_standalone_SOURCES = \
	gkd-ssh-agent-standalone.c

gkd_ssh_agent_standalone_LDADD = \
	libgkd-ssh-agent.la \
	$(top_builddir)/gck/libgck-@GCK_MAJOR@.la \
	$(top_builddir)/egg/libegg-buffer.la \
	$(top_builddir)/egg/libegg-secure.la \
	$(GOBJECT_LIBS) \
	$(GTHREAD_LIBS) \
	$(LIBGCRYPT_LIBS) \
	$(GLIB_LIBS)