updates.
[crypto.git] / Makefile.defines.in
1 #
2 #  Makefile.defines.in
3 #
4 #  Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
5 #
6 #  Copyright (C) 2000 - 2001 Pekka Riikonen
7 #
8 #  This program is free software; you can redistribute it and/or modify
9 #  it under the terms of the GNU General Public License as published by
10 #  the Free Software Foundation; either version 2 of the License, or
11 #  (at your option) any later version.
12 #
13 #  This program is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #  GNU General Public License for more details.
17 #
18
19 #
20 # This file is intended to include all common compilation defines for the
21 # SILC source tree.  All Makefile.ams in the SILC source tree are expected
22 # to include this file (Makefile.defines).  Also all external packages
23 # that are included in the SILC source tree and that needs the SILC
24 # specific complation defines must include this file.
25 #
26 # Add following to your Makefile.am:
27 #
28 # include $(top_srcdir)/Makefile.defines
29 #
30
31 #
32 # Generic definitions
33 #
34 silc_top_srcdir = @SILC_TOP_SRCDIR@
35
36 #
37 # Common libraries that are linked against the created executable
38 #
39 SILC_COMMON_LIBS = @LIBS@ -L$(silc_top_srcdir)/lib -lsilc
40
41 #
42 # Installation defines
43 #
44 silc_etcdir = @ETCDIR@
45 silc_modulesdir = $(prefix)/@MODULESDIR@
46 silc_helpdir = $(prefix)/@HELPDIR@
47 silc_docdir = $(prefix)/@DOCDIR@
48 silc_logsdir = $(prefix)/@LOGSDIR@
49
50 #
51 # INCLUDE defines
52 #
53 INCLUDES = $(ADD_INCLUDES) \
54         -I$(srcdir) -I$(top_srcdir) \
55         -I$(silc_top_srcdir) \
56         -I$(silc_top_srcdir)/lib/silccore \
57         -I$(silc_top_srcdir)/lib/silccrypt \
58         -I$(silc_top_srcdir)/lib/silcmath \
59         -I$(silc_top_srcdir)/lib/silcmath/gmp \
60         -I$(silc_top_srcdir)/lib/silcske \
61         -I$(silc_top_srcdir)/lib/silcsim \
62         -I$(silc_top_srcdir)/lib/silcutil \
63         -I$(silc_top_srcdir)/lib/silcclient \
64         -I$(silc_top_srcdir)/lib/contrib \
65         -I$(silc_top_srcdir)/includes \
66         -I$(silc_top_srcdir)/doc \
67         -I$(silc_top_srcdir)/lib/trq