~ubuntu-branches/ubuntu/oneiric/seahorse/oneiric-proposed-201111150713

1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
1
uidir = $(datadir)/seahorse/ui/
1.2.46 by Andreas Moog
Import upstream version 2.27.5
2
localedir = $(datadir)/locale
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
3
seahorselibexecbindir = $(libdir)/seahorse/
4
5
INCLUDES = -I$(top_builddir) \
6
	-I$(top_srcdir) \
7
	-I$(top_srcdir)/libcryptui \
8
	-I$(top_srcdir)/libseahorse \
9
	$(SEAHORSE_CFLAGS) \
10
	-DDATA_DIR=\""$(datadir)"\" \
11
	-DSEAHORSE_UIDIR=\""$(uidir)"\" \
1.2.46 by Andreas Moog
Import upstream version 2.27.5
12
	-DLOCALEDIR=\"$(localedir)\" \
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
13
	-DEXECDIR=\""$(seahorselibexecbindir)"\" \
14
	-DLIBCRYPTUI_API_SUBJECT_TO_CHANGE \
15
	-DGETTEXT_PACKAGE=\""seahorse\""
16
17
AM_LDFLAGS = @NETLIBS@
1.2.33 by Sebastien Bacher
Import upstream version 2.23.6
18
	
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
19
noinst_LTLIBRARIES = libseahorse-ssh.la
20
21
libseahorse_ssh_la_SOURCES = \
22
	seahorse-ssh.h seahorse-ssh.c \
1.2.39 by Christophe Sauthier
Import upstream version 2.25.4
23
	seahorse-ssh-module.c seahorse-ssh-module.h \
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
24
	seahorse-algo.c seahorse-algo.h \
25
	seahorse-ssh-commands.c seahorse-ssh-commands.h \
1.2.39 by Christophe Sauthier
Import upstream version 2.25.4
26
	seahorse-ssh-dialogs.h \
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
27
	seahorse-ssh-generate.c \
28
	seahorse-ssh-key-data.c seahorse-ssh-key-data.h \
29
	seahorse-ssh-key.c seahorse-ssh-key.h  \
30
	seahorse-ssh-key-properties.c \
31
	seahorse-ssh-source.c seahorse-ssh-source.h \
32
	seahorse-ssh-operation.c seahorse-ssh-operation.h \
33
	seahorse-ssh-upload.c
1.2.39 by Christophe Sauthier
Import upstream version 2.25.4
34
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
35
libseahorse_ssh_la_LIBADD = \
36
	$(top_builddir)/libseahorse/libseahorse.la \
37
	$(top_builddir)/libcryptui/libcryptui.la
38
39
seahorselibexecbin_PROGRAMS = seahorse-ssh-askpass
40
41
seahorse_ssh_askpass_SOURCES = seahorse-ssh-askpass.c
42
seahorse_ssh_askpass_LDADD = \
43
	$(top_builddir)/libseahorse/libseahorse.la \
44
	$(top_builddir)/libcryptui/libcryptui.la \
45
	$(SEAHORSE_LIBS)
46
47
ui_DATA = \
1.2.46 by Andreas Moog
Import upstream version 2.27.5
48
	seahorse-ssh-key-properties.xml \
49
	seahorse-ssh-generate.xml \
50
	seahorse-ssh-upload.xml
51
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
52
EXTRA_DIST = \
53
	$(ui_DATA)
1.2.46 by Andreas Moog
Import upstream version 2.27.5
54
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
55