Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 1 | # This GNU Makefile supports different OS and CPU combinations. |
| 2 | # |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 3 | # You should use it this way : |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 4 | # [g]make TARGET=os ARCH=arch CPU=cpu USE_xxx=1 ... |
Willy Tarreau | f2ef8c5 | 2007-07-11 09:19:31 +0200 | [diff] [blame] | 5 | # |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 6 | # Valid USE_* options are the following. Most of them are automatically set by |
| 7 | # the TARGET, others have to be explictly specified : |
| 8 | # USE_CTTPROXY : enable CTTPROXY on Linux (needs kernel patch). |
Willy Tarreau | f14358b | 2008-02-19 10:53:32 +0100 | [diff] [blame] | 9 | # USE_DLMALLOC : enable use of dlmalloc (see DLMALLOC_SRC) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 10 | # USE_EPOLL : enable epoll() on Linux 2.6. Automatic. |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 11 | # USE_GETSOCKNAME : enable getsockname() on Linux 2.2. Automatic. |
| 12 | # USE_KQUEUE : enable kqueue() on BSD. Automatic. |
| 13 | # USE_MY_EPOLL : redefine epoll_* syscalls. Automatic. |
Willy Tarreau | 43d8fb2 | 2011-08-22 17:12:02 +0200 | [diff] [blame] | 14 | # USE_MY_SPLICE : redefine the splice syscall if build fails without. |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 15 | # USE_NETFILTER : enable netfilter on Linux. Automatic. |
| 16 | # USE_PCRE : enable use of libpcre for regex. Recommended. |
| 17 | # USE_POLL : enable poll(). Automatic. |
| 18 | # USE_REGPARM : enable regparm optimization. Recommended on x86. |
| 19 | # USE_SEPOLL : enable speculative epoll(). Automatic. |
| 20 | # USE_STATIC_PCRE : enable static libpcre. Recommended. |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 21 | # USE_TPROXY : enable transparent proxy. Automatic. |
Willy Tarreau | e0c623d | 2012-06-04 00:42:09 +0200 | [diff] [blame] | 22 | # USE_LINUX_TPROXY : enable full transparent proxy. Automatic. |
| 23 | # USE_LINUX_SPLICE : enable kernel 2.6 splicing. Automatic. |
Willy Tarreau | 890a33e | 2010-03-04 19:10:14 +0100 | [diff] [blame] | 24 | # USE_LIBCRYPT : enable crypted passwords using -lcrypt |
| 25 | # USE_CRYPT_H : set it if your system requires including crypt.h |
Willy Tarreau | 48d84c1 | 2010-11-14 17:09:33 +0100 | [diff] [blame] | 26 | # USE_VSYSCALL : enable vsyscall on Linux x86, bypassing libc |
Willy Tarreau | 64bc40b | 2011-03-23 20:00:53 +0100 | [diff] [blame] | 27 | # USE_GETADDRINFO : use getaddrinfo() to resolve IPv6 host names. |
Willy Tarreau | f2ef8c5 | 2007-07-11 09:19:31 +0200 | [diff] [blame] | 28 | # |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 29 | # Options can be forced by specifying "USE_xxx=1" or can be disabled by using |
| 30 | # "USE_xxx=" (empty string). |
| 31 | # |
| 32 | # Variables useful for packagers : |
| 33 | # CC is set to "gcc" by default and is used for compilation only. |
| 34 | # LD is set to "gcc" by default and is used for linking only. |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 35 | # ARCH may be useful to force build of 32-bit binary on 64-bit systems |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 36 | # CFLAGS is automatically set for the specified CPU and may be overridden. |
| 37 | # LDFLAGS is automatically set to -g and may be overridden. |
| 38 | # SMALL_OPTS may be used to specify some options to shrink memory usage. |
| 39 | # DEBUG may be used to set some internal debugging options. |
| 40 | # ADDINC may be used to complete the include path in the form -Ipath. |
| 41 | # ADDLIB may be used to complete the library list in the form -Lpath -llib. |
| 42 | # DEFINE may be used to specify any additional define, which will be reported |
| 43 | # by "haproxy -vv" in CFLAGS. |
| 44 | # SILENT_DEFINE may be used to specify other defines which will not be |
| 45 | # reported by "haproxy -vv". |
Christian Wiese | a184aa2 | 2008-03-12 15:25:35 +0200 | [diff] [blame] | 46 | # DESTDIR is not set by default and is used for installation only. |
| 47 | # It might be useful to set DESTDIR if you want to install haproxy |
| 48 | # in a sandbox. |
| 49 | # PREFIX is set to "/usr/local" by default and is used for installation only. |
| 50 | # SBINDIR is set to "$(PREFIX)/sbin" by default and is used for installation |
| 51 | # only. |
Christian Wiese | 19b5029 | 2008-03-12 15:57:54 +0200 | [diff] [blame] | 52 | # MANDIR is set to "$(PREFIX)/share/man" by default and is used for |
| 53 | # installation only. |
Christian Wiese | bf34eb4 | 2008-03-12 17:24:49 +0200 | [diff] [blame] | 54 | # DOCDIR is set to "$(PREFIX)/doc/haproxy" by default and is used for |
| 55 | # installation only. |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 56 | # |
| 57 | # Other variables : |
| 58 | # DLMALLOC_SRC : build with dlmalloc, indicate the location of dlmalloc.c. |
| 59 | # DLMALLOC_THRES : should match PAGE_SIZE on every platform (default: 4096). |
| 60 | # PCREDIR : force the path to libpcre. |
| 61 | # IGNOREGIT : ignore GIT commit versions if set. |
| 62 | # VERSION : force haproxy version reporting. |
| 63 | # SUBVERS : add a sub-version (eg: platform, model, ...). |
| 64 | # VERDATE : force haproxy's release date. |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 65 | |
Christian Wiese | a184aa2 | 2008-03-12 15:25:35 +0200 | [diff] [blame] | 66 | #### Installation options. |
| 67 | DESTDIR = |
| 68 | PREFIX = /usr/local |
| 69 | SBINDIR = $(PREFIX)/sbin |
Jeremy Hinegardner | ef3b403 | 2008-11-15 17:29:03 -0700 | [diff] [blame] | 70 | MANDIR = $(PREFIX)/share/man |
Christian Wiese | bf34eb4 | 2008-03-12 17:24:49 +0200 | [diff] [blame] | 71 | DOCDIR = $(PREFIX)/doc/haproxy |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 72 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 73 | #### TARGET system |
| 74 | # Use TARGET=<target_name> to optimize for a specifc target OS among the |
| 75 | # following list (use the default "generic" if uncertain) : |
Willy Tarreau | b181465 | 2009-03-29 15:08:25 +0200 | [diff] [blame] | 76 | # generic, linux22, linux24, linux24e, linux26, solaris, |
Willy Tarreau | 7dec965 | 2012-06-06 16:15:03 +0200 | [diff] [blame] | 77 | # freebsd, openbsd, cygwin, custom, aix52 |
Willy Tarreau | e4208cb | 2008-03-11 06:37:39 +0100 | [diff] [blame] | 78 | TARGET = |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 79 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 80 | #### TARGET CPU |
| 81 | # Use CPU=<cpu_name> to optimize for a particular CPU, among the following |
| 82 | # list : |
Willy Tarreau | a5899aa | 2010-11-28 07:41:00 +0100 | [diff] [blame] | 83 | # generic, native, i586, i686, ultrasparc, custom |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 84 | CPU = generic |
willy tarreau | 036e1ce | 2005-12-17 13:46:33 +0100 | [diff] [blame] | 85 | |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 86 | #### Architecture, used when not building for native architecture |
| 87 | # Use ARCH=<arch_name> to force build for a specific architecture. Known |
| 88 | # architectures will lead to "-m32" or "-m64" being added to CFLAGS and |
| 89 | # LDFLAGS. This can be required to build 32-bit binaries on 64-bit targets. |
Willy Tarreau | a5899aa | 2010-11-28 07:41:00 +0100 | [diff] [blame] | 90 | # Currently, only 32, 64, x86_64, i386, i486, i586 and i686 are understood. |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 91 | ARCH = |
| 92 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 93 | #### Toolchain options. |
| 94 | # GCC is normally used both for compiling and linking. |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 95 | CC = gcc |
Christian Wiese | f630830 | 2008-03-17 18:23:12 +0100 | [diff] [blame] | 96 | LD = $(CC) |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 97 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 98 | #### Debug flags (typically "-g"). |
| 99 | # Those flags only feed CFLAGS so it is not mandatory to use this form. |
| 100 | DEBUG_CFLAGS = -g |
willy tarreau | 036e1ce | 2005-12-17 13:46:33 +0100 | [diff] [blame] | 101 | |
Willy Tarreau | 3c9a3fb | 2010-11-28 08:28:15 +0100 | [diff] [blame] | 102 | #### Compiler-specific flags that may be used to disable some negative over- |
| 103 | # optimization or to silence some warnings. -fno-strict-aliasing is needed with |
| 104 | # gcc >= 4.4. |
| 105 | SPEC_CFLAGS = -fno-strict-aliasing |
| 106 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 107 | #### Memory usage tuning |
| 108 | # If small memory footprint is required, you can reduce the buffer size. There |
| 109 | # are 2 buffers per concurrent session, so 16 kB buffers will eat 32 MB memory |
| 110 | # with 1000 concurrent sessions. Putting it slightly lower than a page size |
| 111 | # will prevent the additional parameters to go beyond a page. 8030 bytes is |
| 112 | # exactly 5.5 TCP segments of 1460 bytes and is generally good. Useful tuning |
| 113 | # macros include : |
| 114 | # SYSTEM_MAXCONN, BUFSIZE, MAXREWRITE, REQURI_LEN, CAPTURE_LEN. |
| 115 | # Example: SMALL_OPTS = -DBUFSIZE=8030 -DMAXREWRITE=1030 -DSYSTEM_MAXCONN=1024 |
| 116 | SMALL_OPTS = |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 117 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 118 | #### Debug settings |
| 119 | # You can enable debugging on specific code parts by setting DEBUG=-DDEBUG_xxx. |
| 120 | # Currently defined DEBUG macros include DEBUG_FULL, DEBUG_MEMORY, DEBUG_FSM, |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 121 | # DEBUG_HASH and DEBUG_AUTH. Please check sources for exact meaning or do not |
| 122 | # use at all. |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 123 | DEBUG = |
willy tarreau | 1c2ad21 | 2005-12-18 01:11:29 +0100 | [diff] [blame] | 124 | |
Willy Tarreau | 7de211c | 2012-05-25 23:53:16 +0200 | [diff] [blame] | 125 | #### Trace options |
| 126 | # Use TRACE=1 to trace function calls to file "trace.out" or to stderr if not |
| 127 | # possible. |
| 128 | TRACE = |
| 129 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 130 | #### Additional include and library dirs |
| 131 | # Redefine this if you want to add some special PATH to include/libs |
| 132 | ADDINC = |
| 133 | ADDLIB = |
willy tarreau | 64a3cc3 | 2005-12-18 01:13:11 +0100 | [diff] [blame] | 134 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 135 | #### Specific macro definitions |
| 136 | # Use DEFINE=-Dxxx to set any tunable macro. Anything declared here will appear |
| 137 | # in the build options reported by "haproxy -vv". Use SILENT_DEFINE if you do |
| 138 | # not want to pollute the report with complex defines. |
| 139 | DEFINE = |
| 140 | SILENT_DEFINE = |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 141 | |
willy tarreau | 5cbea6f | 2005-12-17 12:48:26 +0100 | [diff] [blame] | 142 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 143 | #### CPU dependant optimizations |
| 144 | # Some CFLAGS are set by default depending on the target CPU. Those flags only |
| 145 | # feed CPU_CFLAGS, which in turn feed CFLAGS, so it is not mandatory to use |
| 146 | # them. You should not have to change these options. Better use CPU_CFLAGS or |
| 147 | # even CFLAGS instead. |
| 148 | CPU_CFLAGS.generic = -O2 |
Willy Tarreau | a5899aa | 2010-11-28 07:41:00 +0100 | [diff] [blame] | 149 | CPU_CFLAGS.native = -O2 -march=native |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 150 | CPU_CFLAGS.i586 = -O2 -march=i586 |
| 151 | CPU_CFLAGS.i686 = -O2 -march=i686 |
| 152 | CPU_CFLAGS.ultrasparc = -O6 -mcpu=v9 -mtune=ultrasparc |
| 153 | CPU_CFLAGS = $(CPU_CFLAGS.$(CPU)) |
willy tarreau | 9da061b | 2005-12-17 12:29:56 +0100 | [diff] [blame] | 154 | |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 155 | #### ARCH dependant flags, may be overriden by CPU flags |
Willy Tarreau | a5899aa | 2010-11-28 07:41:00 +0100 | [diff] [blame] | 156 | ARCH_FLAGS.32 = -m32 |
| 157 | ARCH_FLAGS.64 = -m64 |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 158 | ARCH_FLAGS.i386 = -m32 -march=i386 |
| 159 | ARCH_FLAGS.i486 = -m32 -march=i486 |
| 160 | ARCH_FLAGS.i586 = -m32 -march=i586 |
| 161 | ARCH_FLAGS.i686 = -m32 -march=i686 |
| 162 | ARCH_FLAGS.x86_64 = -m64 -march=x86-64 |
| 163 | ARCH_FLAGS = $(ARCH_FLAGS.$(ARCH)) |
| 164 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 165 | #### Common CFLAGS |
| 166 | # These CFLAGS contain general optimization options, CPU-specific optimizations |
| 167 | # and debug flags. They may be overridden by some distributions which prefer to |
| 168 | # set all of them at once instead of playing with the CPU and DEBUG variables. |
Willy Tarreau | 3c9a3fb | 2010-11-28 08:28:15 +0100 | [diff] [blame] | 169 | CFLAGS = $(ARCH_FLAGS) $(CPU_CFLAGS) $(DEBUG_CFLAGS) $(SPEC_CFLAGS) |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 170 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 171 | #### Common LDFLAGS |
| 172 | # These LDFLAGS are used as the first "ld" options, regardless of any library |
| 173 | # path or any other option. They may be changed to add any linker-specific |
| 174 | # option at the beginning of the ld command line. |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 175 | LDFLAGS = $(ARCH_FLAGS) -g |
willy tarreau | 036e1ce | 2005-12-17 13:46:33 +0100 | [diff] [blame] | 176 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 177 | #### Target system options |
| 178 | # Depending on the target platform, some options are set, as well as some |
| 179 | # CFLAGS and LDFLAGS. The USE_* values are set to "implicit" so that they are |
| 180 | # not reported in the build options string. You should not have to change |
| 181 | # anything there. |
| 182 | ifeq ($(TARGET),generic) |
| 183 | # generic system target has nothing specific |
| 184 | USE_POLL = implicit |
| 185 | USE_TPROXY = implicit |
| 186 | else |
| 187 | ifeq ($(TARGET),linux22) |
| 188 | # This is for Linux 2.2 |
| 189 | USE_GETSOCKNAME = implicit |
| 190 | USE_POLL = implicit |
| 191 | USE_TPROXY = implicit |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 192 | USE_LIBCRYPT = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 193 | else |
| 194 | ifeq ($(TARGET),linux24) |
| 195 | # This is for standard Linux 2.4 with netfilter but without epoll() |
| 196 | USE_GETSOCKNAME = implicit |
| 197 | USE_NETFILTER = implicit |
| 198 | USE_POLL = implicit |
| 199 | USE_TPROXY = implicit |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 200 | USE_LIBCRYPT = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 201 | else |
| 202 | ifeq ($(TARGET),linux24e) |
| 203 | # This is for enhanced Linux 2.4 with netfilter and epoll() patch > 0.21 |
| 204 | USE_GETSOCKNAME = implicit |
| 205 | USE_NETFILTER = implicit |
| 206 | USE_POLL = implicit |
| 207 | USE_EPOLL = implicit |
| 208 | USE_SEPOLL = implicit |
| 209 | USE_MY_EPOLL = implicit |
| 210 | USE_TPROXY = implicit |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 211 | USE_LIBCRYPT = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 212 | else |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 213 | ifeq ($(TARGET),linux26) |
| 214 | # This is for standard Linux 2.6 with netfilter and standard epoll() |
| 215 | USE_GETSOCKNAME = implicit |
| 216 | USE_NETFILTER = implicit |
| 217 | USE_POLL = implicit |
| 218 | USE_EPOLL = implicit |
| 219 | USE_SEPOLL = implicit |
| 220 | USE_TPROXY = implicit |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 221 | USE_LIBCRYPT = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 222 | else |
Willy Tarreau | e0c623d | 2012-06-04 00:42:09 +0200 | [diff] [blame] | 223 | ifeq ($(TARGET),linux2628) |
| 224 | # This is for standard Linux >= 2.6.28 with netfilter, epoll, tproxy and splice |
| 225 | USE_GETSOCKNAME = implicit |
| 226 | USE_NETFILTER = implicit |
| 227 | USE_POLL = implicit |
| 228 | USE_EPOLL = implicit |
| 229 | USE_SEPOLL = implicit |
| 230 | USE_TPROXY = implicit |
| 231 | USE_LIBCRYPT = implicit |
| 232 | USE_LINUX_SPLICE= implicit |
| 233 | USE_LINUX_TPROXY= implicit |
| 234 | else |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 235 | ifeq ($(TARGET),solaris) |
| 236 | # This is for Solaris 8 |
Willy Tarreau | 64bc40b | 2011-03-23 20:00:53 +0100 | [diff] [blame] | 237 | # We also enable getaddrinfo() which works since solaris 8. |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 238 | USE_POLL = implicit |
| 239 | TARGET_CFLAGS = -fomit-frame-pointer -DFD_SETSIZE=65536 -D_REENTRANT |
| 240 | TARGET_LDFLAGS = -lnsl -lsocket |
| 241 | USE_TPROXY = implicit |
Willy Tarreau | 890a33e | 2010-03-04 19:10:14 +0100 | [diff] [blame] | 242 | USE_LIBCRYPT = implicit |
| 243 | USE_CRYPT_H = implicit |
Willy Tarreau | 64bc40b | 2011-03-23 20:00:53 +0100 | [diff] [blame] | 244 | USE_GETADDRINFO = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 245 | else |
| 246 | ifeq ($(TARGET),freebsd) |
| 247 | # This is for FreeBSD |
| 248 | USE_POLL = implicit |
| 249 | USE_KQUEUE = implicit |
| 250 | USE_TPROXY = implicit |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 251 | USE_LIBCRYPT = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 252 | else |
| 253 | ifeq ($(TARGET),openbsd) |
| 254 | # This is for OpenBSD >= 3.0 |
| 255 | USE_POLL = implicit |
| 256 | USE_KQUEUE = implicit |
| 257 | USE_TPROXY = implicit |
Yitzhak Sapir | 3208731 | 2009-06-14 18:27:54 +0200 | [diff] [blame] | 258 | else |
Willy Tarreau | 7dec965 | 2012-06-06 16:15:03 +0200 | [diff] [blame] | 259 | ifeq ($(TARGET),aix52) |
| 260 | # This is for AIX 5.2 and later |
| 261 | USE_POLL = implicit |
| 262 | USE_LIBCRYPT = implicit |
| 263 | TARGET_CFLAGS = -D_MSGQSUPPORT |
| 264 | DEBUG_CFLAGS = |
| 265 | else |
Yitzhak Sapir | 3208731 | 2009-06-14 18:27:54 +0200 | [diff] [blame] | 266 | ifeq ($(TARGET),cygwin) |
| 267 | # This is for Cygwin |
| 268 | # Cygwin adds IPv6 support only in version 1.7 (in beta right now). |
| 269 | USE_POLL = implicit |
| 270 | USE_TPROXY = implicit |
| 271 | TARGET_CFLAGS = $(if $(filter 1.5.%, $(shell uname -r)), -DUSE_IPV6 -DAF_INET6=23 -DINET6_ADDRSTRLEN=46, ) |
| 272 | endif # cygwin |
Willy Tarreau | 7dec965 | 2012-06-06 16:15:03 +0200 | [diff] [blame] | 273 | endif # aix52 |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 274 | endif # openbsd |
| 275 | endif # freebsd |
| 276 | endif # solaris |
Willy Tarreau | e0c623d | 2012-06-04 00:42:09 +0200 | [diff] [blame] | 277 | endif # linux2628 |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 278 | endif # linux26 |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 279 | endif # linux24e |
| 280 | endif # linux24 |
| 281 | endif # linux22 |
| 282 | endif # generic |
willy tarreau | 036e1ce | 2005-12-17 13:46:33 +0100 | [diff] [blame] | 283 | |
willy tarreau | 4373b96 | 2005-12-18 01:32:31 +0100 | [diff] [blame] | 284 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 285 | #### Old-style REGEX library settings for compatibility with previous setups. |
| 286 | # It is still possible to use REGEX=<regex_lib> to select an alternative regex |
| 287 | # library. By default, we use libc's regex. On Solaris 8/Sparc, grouping seems |
| 288 | # to be broken using libc, so consider using pcre instead. Supported values are |
| 289 | # "libc", "pcre", and "static-pcre". Use of this method is deprecated in favor |
| 290 | # of "USE_PCRE" and "USE_STATIC_PCRE" (see build options below). |
| 291 | REGEX = libc |
willy tarreau | 9da061b | 2005-12-17 12:29:56 +0100 | [diff] [blame] | 292 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 293 | ifeq ($(REGEX),pcre) |
| 294 | USE_PCRE = 1 |
| 295 | $(warning WARNING! use of "REGEX=pcre" is deprecated, consider using "USE_PCRE=1" instead.) |
| 296 | endif |
willy tarreau | 0174f31 | 2005-12-18 01:02:42 +0100 | [diff] [blame] | 297 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 298 | ifeq ($(REGEX),static-pcre) |
| 299 | USE_STATIC_PCRE = 1 |
| 300 | $(warning WARNING! use of "REGEX=pcre-static" is deprecated, consider using "USE_STATIC_PCRE=1" instead.) |
| 301 | endif |
willy tarreau | 1c2ad21 | 2005-12-18 01:11:29 +0100 | [diff] [blame] | 302 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 303 | #### Old-style TPROXY settings |
| 304 | ifneq ($(findstring -DTPROXY,$(DEFINE)),) |
| 305 | USE_TPROXY = 1 |
| 306 | $(warning WARNING! use of "DEFINE=-DTPROXY" is deprecated, consider using "USE_TPROXY=1" instead.) |
| 307 | endif |
| 308 | |
| 309 | |
| 310 | #### Determine version, sub-version and release date. |
| 311 | # If GIT is found, and IGNOREGIT is not set, VERSION, SUBVERS and VERDATE are |
| 312 | # extracted from the last commit. Otherwise, use the contents of the files |
| 313 | # holding the same names in the current directory. |
willy tarreau | 0174f31 | 2005-12-18 01:02:42 +0100 | [diff] [blame] | 314 | |
Willy Tarreau | 6620dbb | 2007-01-02 00:44:53 +0100 | [diff] [blame] | 315 | ifeq ($(IGNOREGIT),) |
Willy Tarreau | 0131269 | 2010-08-07 22:26:20 +0200 | [diff] [blame] | 316 | VERSION := $(shell [ -d .git/. ] && ref=`(git describe --tags --match 'v*') 2>/dev/null` && ref=$${ref%-g*} && echo "$${ref\#v}") |
Willy Tarreau | 9bf6c6e | 2006-12-23 11:12:04 +0100 | [diff] [blame] | 317 | ifneq ($(VERSION),) |
| 318 | # OK git is there and works. |
Willy Tarreau | 446024e | 2009-07-14 13:24:16 +0200 | [diff] [blame] | 319 | SUBVERS := $(shell comms=`git log --no-merges v$(VERSION).. 2>/dev/null |grep -c ^commit `; [ $$comms -gt 0 ] && echo "-$$comms" ) |
| 320 | VERDATE := $(shell date +%Y/%m/%d -d "`git log --pretty=fuller HEAD^.. 2>/dev/null | sed -ne '/^CommitDate:/{s/\(^[^ ]*:\)\|\( [-+].*\)//gp;q}'`" ) |
Willy Tarreau | ec69256 | 2007-09-09 23:31:11 +0200 | [diff] [blame] | 321 | endif |
| 322 | endif |
| 323 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 324 | # Last commit version not found, take it from the files. |
Willy Tarreau | ec69256 | 2007-09-09 23:31:11 +0200 | [diff] [blame] | 325 | ifeq ($(VERSION),) |
| 326 | VERSION := $(shell cat VERSION 2>/dev/null || touch VERSION) |
| 327 | endif |
| 328 | ifeq ($(SUBVERS),) |
| 329 | SUBVERS := $(shell cat SUBVERS 2>/dev/null || touch SUBVERS) |
| 330 | endif |
| 331 | ifeq ($(VERDATE),) |
| 332 | VERDATE := $(shell cat VERDATE 2>/dev/null || touch VERDATE) |
Willy Tarreau | 9bf6c6e | 2006-12-23 11:12:04 +0100 | [diff] [blame] | 333 | endif |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 334 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 335 | #### Build options |
| 336 | # Do not change these ones, enable USE_* variables instead. |
| 337 | OPTIONS_CFLAGS = |
| 338 | OPTIONS_LDFLAGS = |
| 339 | OPTIONS_OBJS = |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 340 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 341 | # This variable collects all USE_* values except those set to "implicit". This |
| 342 | # is used to report a list of all flags which were used to build this version. |
| 343 | # Do not assign anything to it. |
| 344 | BUILD_OPTIONS = |
| 345 | |
| 346 | # Return USE_xxx=$(USE_xxx) unless $(USE_xxx) = "implicit" |
| 347 | # Usage: |
| 348 | # BUILD_OPTIONS += $(call ignore_implicit,USE_xxx) |
| 349 | ignore_implicit = $(patsubst %=implicit,,$(1)=$($(1))) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 350 | |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 351 | ifneq ($(USE_TCPSPLICE),) |
Willy Tarreau | b55932d | 2009-08-16 13:20:32 +0200 | [diff] [blame] | 352 | $(error experimental option USE_TCPSPLICE has been removed, check USE_LINUX_SPLICE) |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 353 | endif |
| 354 | |
Willy Tarreau | 88e458a | 2009-01-25 16:13:42 +0100 | [diff] [blame] | 355 | ifneq ($(USE_LINUX_SPLICE),) |
| 356 | OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_SPLICE |
| 357 | BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_SPLICE) |
| 358 | endif |
| 359 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 360 | ifneq ($(USE_CTTPROXY),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 361 | OPTIONS_CFLAGS += -DCONFIG_HAP_CTTPROXY |
| 362 | OPTIONS_OBJS += src/cttproxy.o |
| 363 | BUILD_OPTIONS += $(call ignore_implicit,USE_CTTPROXY) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 364 | endif |
| 365 | |
| 366 | ifneq ($(USE_TPROXY),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 367 | OPTIONS_CFLAGS += -DTPROXY |
| 368 | BUILD_OPTIONS += $(call ignore_implicit,USE_TPROXY) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 369 | endif |
| 370 | |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 371 | ifneq ($(USE_LINUX_TPROXY),) |
| 372 | OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_TPROXY |
| 373 | BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_TPROXY) |
| 374 | endif |
| 375 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 376 | ifneq ($(USE_LIBCRYPT),) |
| 377 | OPTIONS_CFLAGS += -DCONFIG_HAP_CRYPT |
| 378 | BUILD_OPTIONS += $(call ignore_implicit,USE_LIBCRYPT) |
| 379 | OPTIONS_LDFLAGS += -lcrypt |
| 380 | endif |
| 381 | |
Willy Tarreau | 890a33e | 2010-03-04 19:10:14 +0100 | [diff] [blame] | 382 | ifneq ($(USE_CRYPT_H),) |
| 383 | OPTIONS_CFLAGS += -DNEED_CRYPT_H |
| 384 | BUILD_OPTIONS += $(call ignore_implicit,USE_CRYPT_H) |
| 385 | endif |
| 386 | |
Willy Tarreau | 64bc40b | 2011-03-23 20:00:53 +0100 | [diff] [blame] | 387 | ifneq ($(USE_GETADDRINFO),) |
| 388 | OPTIONS_CFLAGS += -DUSE_GETADDRINFO |
| 389 | BUILD_OPTIONS += $(call ignore_implicit,USE_GETADDRINFO) |
| 390 | endif |
| 391 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 392 | ifneq ($(USE_POLL),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 393 | OPTIONS_CFLAGS += -DENABLE_POLL |
| 394 | OPTIONS_OBJS += src/ev_poll.o |
| 395 | BUILD_OPTIONS += $(call ignore_implicit,USE_POLL) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 396 | endif |
| 397 | |
| 398 | ifneq ($(USE_EPOLL),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 399 | OPTIONS_CFLAGS += -DENABLE_EPOLL |
| 400 | OPTIONS_OBJS += src/ev_epoll.o |
| 401 | BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 402 | endif |
| 403 | |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 404 | ifneq ($(USE_SEPOLL),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 405 | OPTIONS_CFLAGS += -DENABLE_SEPOLL |
| 406 | OPTIONS_OBJS += src/ev_sepoll.o |
| 407 | BUILD_OPTIONS += $(call ignore_implicit,USE_SEPOLL) |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 408 | endif |
| 409 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 410 | ifneq ($(USE_MY_EPOLL),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 411 | OPTIONS_CFLAGS += -DUSE_MY_EPOLL |
| 412 | BUILD_OPTIONS += $(call ignore_implicit,USE_MY_EPOLL) |
| 413 | endif |
| 414 | |
| 415 | ifneq ($(USE_KQUEUE),) |
| 416 | OPTIONS_CFLAGS += -DENABLE_KQUEUE |
| 417 | OPTIONS_OBJS += src/ev_kqueue.o |
| 418 | BUILD_OPTIONS += $(call ignore_implicit,USE_KQUEUE) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 419 | endif |
| 420 | |
Willy Tarreau | 48d84c1 | 2010-11-14 17:09:33 +0100 | [diff] [blame] | 421 | ifneq ($(USE_VSYSCALL),) |
| 422 | OPTIONS_OBJS += src/i386-linux-vsys.o |
| 423 | OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_VSYSCALL |
| 424 | BUILD_OPTIONS += $(call ignore_implicit,USE_VSYSCALL) |
| 425 | endif |
| 426 | |
Willy Tarreau | 43d8fb2 | 2011-08-22 17:12:02 +0200 | [diff] [blame] | 427 | ifneq ($(USE_MY_SPLICE),) |
| 428 | OPTIONS_CFLAGS += -DUSE_MY_SPLICE |
| 429 | BUILD_OPTIONS += $(call ignore_implicit,USE_MY_SPLICE) |
| 430 | endif |
| 431 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 432 | ifneq ($(USE_NETFILTER),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 433 | OPTIONS_CFLAGS += -DNETFILTER |
| 434 | BUILD_OPTIONS += $(call ignore_implicit,USE_NETFILTER) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 435 | endif |
| 436 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 437 | ifneq ($(USE_GETSOCKNAME),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 438 | OPTIONS_CFLAGS += -DUSE_GETSOCKNAME |
| 439 | BUILD_OPTIONS += $(call ignore_implicit,USE_GETSOCKNAME) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 440 | endif |
| 441 | |
| 442 | ifneq ($(USE_REGPARM),) |
Willy Tarreau | cc05fba | 2009-10-27 21:40:18 +0100 | [diff] [blame] | 443 | OPTIONS_CFLAGS += -DCONFIG_REGPARM=3 |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 444 | BUILD_OPTIONS += $(call ignore_implicit,USE_REGPARM) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 445 | endif |
| 446 | |
Willy Tarreau | f32d19a | 2008-03-07 10:02:14 +0100 | [diff] [blame] | 447 | # report DLMALLOC_SRC only if explicitly specified |
| 448 | ifneq ($(DLMALLOC_SRC),) |
| 449 | BUILD_OPTIONS += DLMALLOC_SRC=$(DLMALLOC_SRC) |
| 450 | endif |
| 451 | |
Willy Tarreau | f14358b | 2008-02-19 10:53:32 +0100 | [diff] [blame] | 452 | ifneq ($(USE_DLMALLOC),) |
| 453 | BUILD_OPTIONS += $(call ignore_implicit,USE_DLMALLOC) |
| 454 | ifeq ($(DLMALLOC_SRC),) |
| 455 | DLMALLOC_SRC=src/dlmalloc.c |
| 456 | endif |
| 457 | endif |
| 458 | |
Willy Tarreau | f2ef8c5 | 2007-07-11 09:19:31 +0200 | [diff] [blame] | 459 | ifneq ($(DLMALLOC_SRC),) |
Willy Tarreau | f32d19a | 2008-03-07 10:02:14 +0100 | [diff] [blame] | 460 | # DLMALLOC_THRES may be changed to match PAGE_SIZE on every platform |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 461 | DLMALLOC_THRES = 4096 |
| 462 | OPTIONS_OBJS += src/dlmalloc.o |
Willy Tarreau | f2ef8c5 | 2007-07-11 09:19:31 +0200 | [diff] [blame] | 463 | endif |
| 464 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 465 | ifneq ($(USE_PCRE),) |
| 466 | # PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is |
Willy Tarreau | 32d0272 | 2012-02-10 19:46:59 +0100 | [diff] [blame] | 467 | # automatically detected but can be forced if required. Forcing it to an empty |
| 468 | # string will result in search only in the default paths. |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 469 | ifeq ($(PCREDIR),) |
| 470 | PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local) |
Willy Tarreau | 79b34bf | 2006-12-22 15:28:43 +0100 | [diff] [blame] | 471 | endif |
Christian Wiese | c820300 | 2008-11-20 14:47:04 +0100 | [diff] [blame] | 472 | ifeq ($(USE_STATIC_PCRE),) |
Willy Tarreau | 32d0272 | 2012-02-10 19:46:59 +0100 | [diff] [blame] | 473 | OPTIONS_CFLAGS += -DUSE_PCRE $(if $(PCREDIR),-I$(PCREDIR)/include) |
| 474 | OPTIONS_LDFLAGS += $(if $(PCREDIR),-L$(PCREDIR)/lib) -lpcreposix -lpcre |
Christian Wiese | c820300 | 2008-11-20 14:47:04 +0100 | [diff] [blame] | 475 | endif |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 476 | BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE) |
Willy Tarreau | 79b34bf | 2006-12-22 15:28:43 +0100 | [diff] [blame] | 477 | endif |
| 478 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 479 | ifneq ($(USE_STATIC_PCRE),) |
| 480 | # PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is |
| 481 | # automatically detected but can be forced if required. |
| 482 | ifeq ($(PCREDIR),) |
| 483 | PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local) |
| 484 | endif |
Willy Tarreau | 32d0272 | 2012-02-10 19:46:59 +0100 | [diff] [blame] | 485 | OPTIONS_CFLAGS += -DUSE_PCRE $(if $(PCREDIR),-I$(PCREDIR)/include) |
| 486 | OPTIONS_LDFLAGS += $(if $(PCREDIR),-L$(PCREDIR)/lib) -Wl,-Bstatic -lpcreposix -lpcre -Wl,-Bdynamic |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 487 | BUILD_OPTIONS += $(call ignore_implicit,USE_STATIC_PCRE) |
| 488 | endif |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 489 | |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 490 | # This one can be changed to look for ebtree files in an external directory |
| 491 | EBTREE_DIR := ebtree |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 492 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 493 | #### Global compile options |
| 494 | VERBOSE_CFLAGS = $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 495 | COPTS = -Iinclude -I$(EBTREE_DIR) -Wall |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 496 | COPTS += $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) $(SILENT_DEFINE) |
| 497 | COPTS += $(DEBUG) $(OPTIONS_CFLAGS) $(ADDINC) |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 498 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 499 | ifneq ($(VERSION)$(SUBVERS),) |
| 500 | COPTS += -DCONFIG_HAPROXY_VERSION=\"$(VERSION)$(SUBVERS)\" |
| 501 | endif |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 502 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 503 | ifneq ($(VERDATE),) |
| 504 | COPTS += -DCONFIG_HAPROXY_DATE=\"$(VERDATE)\" |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 505 | endif |
| 506 | |
Willy Tarreau | 7de211c | 2012-05-25 23:53:16 +0200 | [diff] [blame] | 507 | ifneq ($(TRACE),) |
| 508 | # if tracing is enabled, we want it to be as fast as possible |
| 509 | TRACE_COPTS := $(filter-out -O0 -O1 -O2 -pg -finstrument-functions,$(COPTS)) -O3 -fomit-frame-pointer |
| 510 | COPTS += -finstrument-functions |
| 511 | endif |
| 512 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 513 | #### Global link options |
| 514 | # These options are added at the end of the "ld" command line. Use LDFLAGS to |
| 515 | # add options at the beginning of the "ld" command line if needed. |
| 516 | LDOPTS = $(TARGET_LDFLAGS) $(OPTIONS_LDFLAGS) $(ADDLIB) |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 517 | |
Willy Tarreau | e4208cb | 2008-03-11 06:37:39 +0100 | [diff] [blame] | 518 | ifeq ($(TARGET),) |
| 519 | all: |
| 520 | @echo |
| 521 | @echo "Due to too many reports of suboptimized setups, building without" |
| 522 | @echo "specifying the target is no longer supported. Please specify the" |
| 523 | @echo "target OS in the TARGET variable, in the following form:" |
| 524 | @echo |
| 525 | @echo " $ make TARGET=xxx" |
| 526 | @echo |
| 527 | @echo "Please choose the target among the following supported list :" |
| 528 | @echo |
Willy Tarreau | e0c623d | 2012-06-04 00:42:09 +0200 | [diff] [blame] | 529 | @echo " linux2628, linux26, linux24, linux24e, linux22, solaris" |
Yitzhak Sapir | 3208731 | 2009-06-14 18:27:54 +0200 | [diff] [blame] | 530 | @echo " freebsd, openbsd, cygwin, custom, generic" |
Willy Tarreau | e4208cb | 2008-03-11 06:37:39 +0100 | [diff] [blame] | 531 | @echo |
| 532 | @echo "Use \"generic\" if you don't want any optimization, \"custom\" if you" |
| 533 | @echo "want to precisely tweak every option, or choose the target which" |
| 534 | @echo "matches your OS the most in order to gain the maximum performance" |
| 535 | @echo "out of it. Please check the Makefile in case of doubts." |
| 536 | @echo |
| 537 | @exit 1 |
| 538 | else |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 539 | all: haproxy |
Willy Tarreau | e4208cb | 2008-03-11 06:37:39 +0100 | [diff] [blame] | 540 | endif |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 541 | |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 542 | OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \ |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 543 | src/uri_auth.o src/standard.o src/buffer.o src/log.o src/task.o \ |
| 544 | src/chunk.o src/channel.o \ |
Willy Tarreau | 982b6e3 | 2009-01-25 13:49:53 +0100 | [diff] [blame] | 545 | src/time.o src/fd.o src/pipe.o src/regex.o src/cfgparse.o src/server.o \ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 546 | src/checks.o src/queue.o src/frontend.o src/proxy.o src/peers.o \ |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 547 | src/arg.o src/stick_table.o src/proto_uxst.o src/connection.o \ |
Willy Tarreau | 75bf2c9 | 2012-08-20 17:01:35 +0200 | [diff] [blame] | 548 | src/proto_http.o src/raw_sock.o src/appsession.o src/backend.o \ |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 549 | src/lb_chash.o src/lb_fwlc.o src/lb_fwrr.o src/lb_map.o src/lb_fas.o \ |
Willy Tarreau | dded32d | 2008-11-30 19:48:07 +0100 | [diff] [blame] | 550 | src/stream_interface.o src/dumpstats.o src/proto_tcp.o \ |
Willy Tarreau | bc5258d | 2009-05-10 09:00:20 +0200 | [diff] [blame] | 551 | src/session.o src/hdr_idx.o src/ev_select.o src/signal.o \ |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 552 | src/acl.o src/sample.o src/memory.o src/freq_ctr.o src/auth.o \ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 553 | |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 554 | EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o \ |
| 555 | $(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \ |
| 556 | $(EBTREE_DIR)/ebmbtree.o $(EBTREE_DIR)/ebsttree.o \ |
| 557 | $(EBTREE_DIR)/ebimtree.o $(EBTREE_DIR)/ebistree.o |
| 558 | |
Willy Tarreau | 7de211c | 2012-05-25 23:53:16 +0200 | [diff] [blame] | 559 | ifneq ($(TRACE),) |
| 560 | OBJS += src/trace.o |
| 561 | endif |
| 562 | |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 563 | # Not used right now |
| 564 | LIB_EBTREE = $(EBTREE_DIR)/libebtree.a |
| 565 | |
| 566 | haproxy: $(OBJS) $(OPTIONS_OBJS) $(EBTREE_OBJS) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 567 | $(LD) $(LDFLAGS) -o $@ $^ $(LDOPTS) |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 568 | |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 569 | $(LIB_EBTREE): $(EBTREE_OBJS) |
| 570 | $(AR) rv $@ $^ |
| 571 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 572 | objsize: haproxy |
| 573 | @objdump -t $^|grep ' g '|grep -F '.text'|awk '{print $$5 FS $$6}'|sort |
| 574 | |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 575 | %.o: %.c |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 576 | $(CC) $(COPTS) -c -o $@ $< |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 577 | |
Willy Tarreau | 7de211c | 2012-05-25 23:53:16 +0200 | [diff] [blame] | 578 | src/trace.o: src/trace.c |
| 579 | $(CC) $(TRACE_COPTS) -c -o $@ $< |
| 580 | |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 581 | src/haproxy.o: src/haproxy.c |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 582 | $(CC) $(COPTS) \ |
| 583 | -DBUILD_TARGET='"$(strip $(TARGET))"' \ |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 584 | -DBUILD_ARCH='"$(strip $(ARCH))"' \ |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 585 | -DBUILD_CPU='"$(strip $(CPU))"' \ |
| 586 | -DBUILD_CC='"$(strip $(CC))"' \ |
| 587 | -DBUILD_CFLAGS='"$(strip $(VERBOSE_CFLAGS))"' \ |
| 588 | -DBUILD_OPTIONS='"$(strip $(BUILD_OPTIONS))"' \ |
| 589 | -c -o $@ $< |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 590 | |
Willy Tarreau | f2ef8c5 | 2007-07-11 09:19:31 +0200 | [diff] [blame] | 591 | src/dlmalloc.o: $(DLMALLOC_SRC) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 592 | $(CC) $(COPTS) -DDEFAULT_MMAP_THRESHOLD=$(DLMALLOC_THRES) -c -o $@ $< |
Willy Tarreau | f2ef8c5 | 2007-07-11 09:19:31 +0200 | [diff] [blame] | 593 | |
Christian Wiese | 19b5029 | 2008-03-12 15:57:54 +0200 | [diff] [blame] | 594 | install-man: |
Christian Wiese | ce8f342 | 2008-03-12 18:19:16 +0200 | [diff] [blame] | 595 | install -d $(DESTDIR)$(MANDIR)/man1 |
| 596 | install -m 644 doc/haproxy.1 $(DESTDIR)$(MANDIR)/man1 |
Christian Wiese | 19b5029 | 2008-03-12 15:57:54 +0200 | [diff] [blame] | 597 | |
Christian Wiese | bf34eb4 | 2008-03-12 17:24:49 +0200 | [diff] [blame] | 598 | install-doc: |
Christian Wiese | ce8f342 | 2008-03-12 18:19:16 +0200 | [diff] [blame] | 599 | install -d $(DESTDIR)$(DOCDIR) |
Christian Wiese | bf34eb4 | 2008-03-12 17:24:49 +0200 | [diff] [blame] | 600 | for x in configuration architecture haproxy-en haproxy-fr; do \ |
Christian Wiese | ce8f342 | 2008-03-12 18:19:16 +0200 | [diff] [blame] | 601 | install -m 644 doc/$$x.txt $(DESTDIR)$(DOCDIR) ; \ |
Christian Wiese | bf34eb4 | 2008-03-12 17:24:49 +0200 | [diff] [blame] | 602 | done |
| 603 | |
Willy Tarreau | e9bc01e | 2008-06-12 00:25:46 +0200 | [diff] [blame] | 604 | install-bin: haproxy |
Christian Wiese | ce8f342 | 2008-03-12 18:19:16 +0200 | [diff] [blame] | 605 | install -d $(DESTDIR)$(SBINDIR) |
| 606 | install haproxy $(DESTDIR)$(SBINDIR) |
Christian Wiese | a184aa2 | 2008-03-12 15:25:35 +0200 | [diff] [blame] | 607 | |
Christian Wiese | db5238d | 2008-03-12 18:28:13 +0200 | [diff] [blame] | 608 | install: install-bin install-man install-doc |
Christian Wiese | 4cf5d57 | 2008-03-12 16:21:05 +0200 | [diff] [blame] | 609 | |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 610 | clean: |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 611 | rm -f *.[oas] src/*.[oas] ebtree/*.[oas] haproxy test |
| 612 | for dir in . src include/* doc ebtree; do rm -f $$dir/*~ $$dir/*.rej $$dir/core; done |
Willy Tarreau | 9bf6c6e | 2006-12-23 11:12:04 +0100 | [diff] [blame] | 613 | rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)$(SUBVERS).tar.gz |
| 614 | rm -f haproxy-$(VERSION) nohup.out gmon.out |
willy tarreau | efae184 | 2005-12-17 12:51:03 +0100 | [diff] [blame] | 615 | |
Willy Tarreau | ebe0af4 | 2009-10-10 22:20:44 +0200 | [diff] [blame] | 616 | tags: |
Willy Tarreau | 42d2c6c | 2010-03-29 09:35:20 +0200 | [diff] [blame] | 617 | find src include \( -name '*.c' -o -name '*.h' \) -print0 | \ |
Willy Tarreau | ebe0af4 | 2009-10-10 22:20:44 +0200 | [diff] [blame] | 618 | xargs -0 etags --declarations --members |
| 619 | |
willy tarreau | e114bf9 | 2006-03-19 21:30:14 +0100 | [diff] [blame] | 620 | tar: clean |
willy tarreau | cee272f | 2006-03-19 21:16:26 +0100 | [diff] [blame] | 621 | ln -s . haproxy-$(VERSION) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 622 | tar --exclude=haproxy-$(VERSION)/.git \ |
| 623 | --exclude=haproxy-$(VERSION)/haproxy-$(VERSION) \ |
| 624 | --exclude=haproxy-$(VERSION)/haproxy-$(VERSION).tar.gz \ |
| 625 | -cf - haproxy-$(VERSION)/* | gzip -c9 >haproxy-$(VERSION).tar.gz |
willy tarreau | cee272f | 2006-03-19 21:16:26 +0100 | [diff] [blame] | 626 | rm -f haproxy-$(VERSION) |
| 627 | |
Willy Tarreau | 9f0a901 | 2006-10-15 14:24:14 +0200 | [diff] [blame] | 628 | git-tar: clean |
Willy Tarreau | 63076b3 | 2009-07-23 13:43:33 +0200 | [diff] [blame] | 629 | git archive --format=tar --prefix="haproxy-$(VERSION)/" HEAD | gzip -9 > haproxy-$(VERSION)$(SUBVERS).tar.gz |
Willy Tarreau | ec69256 | 2007-09-09 23:31:11 +0200 | [diff] [blame] | 630 | |
| 631 | version: |
| 632 | @echo "VERSION: $(VERSION)" |
| 633 | @echo "SUBVERS: $(SUBVERS)" |
| 634 | @echo "VERDATE: $(VERDATE)" |
| 635 | |
| 636 | # never use this one if you don't know what it is used for. |
| 637 | update-version: |
| 638 | @echo "Ready to update the following versions :" |
| 639 | @echo "VERSION: $(VERSION)" |
| 640 | @echo "SUBVERS: $(SUBVERS)" |
| 641 | @echo "VERDATE: $(VERDATE)" |
| 642 | @echo "Press [ENTER] to continue or Ctrl-C to abort now.";read |
| 643 | echo "$(VERSION)" > VERSION |
| 644 | echo "$(SUBVERS)" > SUBVERS |
| 645 | echo "$(VERDATE)" > VERDATE |