Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Contents of /trunk/Makefile.conf
Parent Directory
|
Revision Log
Revision 1784 -
(show annotations)
(download)
Sat Aug 15 13:08:37 2015 UTC (9 years, 7 months ago) by amb
File size: 3003 byte(s)
Sat Aug 15 13:08:37 2015 UTC (9 years, 7 months ago) by amb
File size: 3003 byte(s)
Merge libroutino branch back into the trunk.
1 | # Configuration Makefile |
2 | # |
3 | # Part of the Routino routing software. |
4 | # |
5 | # This file Copyright 2013-2015 Andrew M. Bishop |
6 | # |
7 | # This program is free software: you can redistribute it and/or modify |
8 | # it under the terms of the GNU Affero General Public License as published by |
9 | # the Free Software Foundation, either version 3 of the License, or |
10 | # (at your option) any later version. |
11 | # |
12 | # This program is distributed in the hope that it will be useful, |
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | # GNU Affero General Public License for more details. |
16 | # |
17 | # You should have received a copy of the GNU Affero General Public License |
18 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | # |
20 | |
21 | # Automatic operating system detection |
22 | |
23 | UNAME=$(shell uname) |
24 | |
25 | HOST=UNIX |
26 | |
27 | ifneq ($(findstring CYGWIN,$(UNAME)),) |
28 | HOST=CYGWIN |
29 | endif |
30 | |
31 | ifneq ($(findstring MINGW,$(UNAME)),) |
32 | HOST=MINGW |
33 | endif |
34 | |
35 | |
36 | # Simplify handling of executable targets ending in .exe |
37 | |
38 | ifeq ($(HOST),MINGW) |
39 | .EXE=.exe |
40 | else |
41 | .EXE= |
42 | endif |
43 | |
44 | |
45 | # Installation locations (edit if required) |
46 | |
47 | ifneq ($(HOST),MINGW) |
48 | prefix=/usr/local |
49 | bindir=$(prefix)/bin |
50 | incdir=$(prefix)/include |
51 | libdir=$(prefix)/lib |
52 | docdir=$(prefix)/doc/routino |
53 | datadir=$(prefix)/share/routino |
54 | else |
55 | prefix="c:/Program Files/Routino" |
56 | bindir=$(prefix)/bin |
57 | incdir=$(prefix)/include |
58 | libdir=$(prefix)/lib |
59 | docdir=$(prefix)/doc |
60 | datadir=$(prefix)/xml |
61 | endif |
62 | |
63 | |
64 | # Compilation programs |
65 | CC=gcc |
66 | LD=gcc |
67 | |
68 | |
69 | # Language dialect selection |
70 | CFLAGS=-std=c99 |
71 | |
72 | # Warning options |
73 | CFLAGS+=-Wall -Wmissing-prototypes -Wextra -Wno-unused-parameter -pedantic |
74 | |
75 | # Optimisation options |
76 | CFLAGS+=-O3 |
77 | CFLAGS+=-ffast-math |
78 | |
79 | # Optimisation option (only works if compilation and execution use exactly the same CPU architecture). |
80 | #CFLAGS+=-march=native |
81 | |
82 | # Debugging symbols |
83 | #CFLAGS+=-g |
84 | |
85 | |
86 | # Maths library |
87 | LDFLAGS=-lm |
88 | |
89 | |
90 | # Extra flags for compiling libroutino shared library (visibility of symbols, shared) |
91 | CFLAGS_LIB=-fvisibility=hidden |
92 | LDFLAGS_LIB=-shared |
93 | |
94 | ifeq ($(HOST),UNIX) |
95 | # Extra flags for compiling libroutino shared library (position independent code) |
96 | CFLAGS_LIB+=-fPIC |
97 | LDFLAGS_LIB+=-fPIC |
98 | endif |
99 | |
100 | # Put the current directory in the shared library path for the router using libroutino |
101 | LDFLAGS_LDSO=-Wl,-R. |
102 | |
103 | |
104 | # Required for multi-threaded support (comment these two lines out if not required) |
105 | CFLAGS+=-pthread -DUSE_PTHREADS |
106 | LDFLAGS+=-pthread -lpthread |
107 | |
108 | |
109 | ifneq ($(HOST),MINGW) |
110 | # Required for bzip2 support (comment these two lines out if not required) |
111 | CFLAGS+=-DUSE_BZIP2 |
112 | LDFLAGS+=-lbz2 |
113 | endif |
114 | |
115 | |
116 | # Required for gzip support (comment these two lines out if not required) |
117 | CFLAGS+=-DUSE_GZIP |
118 | LDFLAGS+=-lz |
119 | |
120 | |
121 | # Required for xz support (uncomment these two lines if required) |
122 | #CFLAGS+=-DUSE_XZ |
123 | #LDFLAGS+=-llzma |
124 | |
125 | |
126 | # Required to use stdio with files > 2GiB on 32-bit system. |
127 | CFLAGS+=-D_FILE_OFFSET_BITS=64 |
128 | |
129 | |
130 | ifneq ($(HOST),MINGW) |
131 | # Required to compile on Linux without a warning about pread() and pwrite() functions. |
132 | CFLAGS+=-D_POSIX_C_SOURCE=200809L |
133 | endif |