-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.am
55 lines (44 loc) · 1.9 KB
/
Makefile.am
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# This file is part of SecureSkat.
#
# Copyright (C) 2017, 2018 Heiko Stamer <HeikoStamer@gmx.net>
#
# SecureSkat is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser general Public License as
# published by the Free Software Foundation; either version 2.1 of
# the License, or (at your option) any later version.
#
# SecureSkat is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with LibTMCG; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
SUBDIRS = po
DIST_SUBDIRS = po
EXTRA_DIST = AUTHORS BUGS COPYING FDL INSTALL NEWS README TODO THANKS ChangeLog
LDADD = @LIBGMP_LIBS@ @LIBGCRYPT_LIBS@ @LIBTMCG_LIBS@ @LTLIBINTL@ @LIBINTL@
bin_PROGRAMS = SecureSkat SecureSkat_random SecureSkat_ai
SecureSkat_SOURCES = securesocketstream.hh pipestream.hh socketstream.hh\
SecureSkat_misc.cc SecureSkat_pki.cc SecureSkat_rnk.cc\
SecureSkat_irc.cc SecureSkat_rule.cc SecureSkat_game.cc\
SecureSkat_misc.hh SecureSkat_pki.hh SecureSkat_rnk.hh\
SecureSkat_irc.hh SecureSkat_rule.hh SecureSkat_game.hh\
SecureSkat_vote.hh SecureSkat_vote.cc\
SecureSkat_skat.hh SecureSkat_skat.cc\
SecureSkat_defs.hh\
SecureSkat.cc
SecureSkat_random_SOURCES = SecureSkat_rule.cc SecureSkat_rule.hh\
SecureSkat_defs.hh\
SecureSkat_random.cc
SecureSkat_random_LDADD = @LIBTMCG_LIBS@ @LTLIBINTL@ @LIBINTL@
SecureSkat_ai_SOURCES = SecureSkat_rule.cc SecureSkat_rule.hh\
SecureSkat_defs.hh\
SecureSkat_ai.cc
SecureSkat_ai_LDADD = @LIBTMCG_LIBS@ @LTLIBINTL@ @LIBINTL@
ACLOCAL_AMFLAGS = -I m4
datadir = @datadir@
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@