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).
23 #
24 # Add following to your Makefile.am:
25 #
26 # include $(top_srcdir)/Makefile.defines
27 #
28
29 #
30 # Generic definitions
31 #
32 silc_top_srcdir = @SILC_TOP_SRCDIR@
33
34 #
35 # Common libraries that are linked against the created executable
36 #
37 SILC_COMMON_LIBS = @LIBS@ -L$(silc_top_srcdir)/lib -lsilc
38
39 #
40 # Installation defines
41 #
42 silc_etcdir = @ETCDIR@
43 silc_modulesdir = $(prefix)/@MODULESDIR@
44 silc_helpdir = $(prefix)/@HELPDIR@
45 silc_docdir = $(prefix)/@DOCDIR@
46 silc_logsdir = $(prefix)/@LOGSDIR@
47
48 #
49 # INCLUDE defines
50 #
51 INCLUDES = $(ADD_INCLUDES) \
52         -I$(srcdir) -I$(top_srcdir) \
53         -I$(silc_top_srcdir) \
54         -I$(silc_top_srcdir)/lib/silccore \
55         -I$(silc_top_srcdir)/lib/silccrypt \
56         -I$(silc_top_srcdir)/lib/silcmath \
57         -I$(silc_top_srcdir)/lib/silcmath/gmp \
58         -I$(silc_top_srcdir)/lib/silcske \
59         -I$(silc_top_srcdir)/lib/silcsim \
60         -I$(silc_top_srcdir)/lib/silcutil \
61         -I$(silc_top_srcdir)/lib/silcclient \
62         -I$(silc_top_srcdir)/lib/contrib \
63         -I$(silc_top_srcdir)/includes \
64         -I$(silc_top_srcdir)/doc \
65         -I$(silc_top_srcdir)/lib/trq