-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.defines.in
56 lines (52 loc) · 1.75 KB
/
Makefile.defines.in
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
55
56
#
# Makefile.defines.pre
#
# Author: Pekka Riikonen <priikone@silcnet.org>
#
# Copyright (C) 2001 - 2005 Pekka Riikonen
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program 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 General Public License for more details.
#
#
# This file is intended to include all common compilation defines for the
# SILC source tree. All Makefile.ams in the SILC source tree are expected
# to include this file (Makefile.defines.in). Also this file may be included
# in any external project that is included in the SILC source tree.
#
# Add following to your Makefile.am:
#
# include $(top_srcdir)/Makefile.defines.in
#
# All packages in the SILC source tree that include the Makefile.defines.in
# must also include the following two lines in their configure.in file.
#
# INCLUDE_DEFINES_INT="include \$(top_srcdir)/Makefile.defines_int"
# AC_SUBST(INCLUDE_DEFINES_INT)
#
# (See the Makefile.defines_int.pre for all different definitions but DO NOT
# directly include that file!)
#
@INCLUDE_DEFINES_INT@
#
# INCLUDE defines
#
INCLUDES = $(ADD_INCLUDES) $(SILC_CFLAGS) -DHAVE_SILCDEFS_H \
-I$(srcdir) -I$(top_srcdir) \
-I$(silc_top_srcdir) $(SILC_LIB_INCLUDES) \
-I$(silc_top_srcdir)/includes \
-I$(silc_top_srcdir)/doc
#
#includes-install: Makefile
# for i in $(include_HEADERS); do s=$(srcdir)/$$i;
#d=$(silc_top_srcdir)/includes/$$i; \
# ln $$s $$d 2>/dev/null || (rm -f $$d; cp -p $$s $$d;); \
# done;
#
#all-local: includes-install