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. |
Arnaud Cornet | b94af61 | 2010-04-25 22:35:17 +0200 | [diff] [blame] | 22 | # USE_LINUX_TPROXY : enable full transparent proxy (needs kernel 2.6.28). |
Willy Tarreau | 88e458a | 2009-01-25 16:13:42 +0100 | [diff] [blame] | 23 | # USE_LINUX_SPLICE : enable kernel 2.6 splicing (broken on old kernels) |
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, |
Yitzhak Sapir | 3208731 | 2009-06-14 18:27:54 +0200 | [diff] [blame] | 77 | # freebsd, openbsd, cygwin, custom |
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 | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 125 | #### Additional include and library dirs |
| 126 | # Redefine this if you want to add some special PATH to include/libs |
| 127 | ADDINC = |
| 128 | ADDLIB = |
willy tarreau | 64a3cc3 | 2005-12-18 01:13:11 +0100 | [diff] [blame] | 129 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 130 | #### Specific macro definitions |
| 131 | # Use DEFINE=-Dxxx to set any tunable macro. Anything declared here will appear |
| 132 | # in the build options reported by "haproxy -vv". Use SILENT_DEFINE if you do |
| 133 | # not want to pollute the report with complex defines. |
| 134 | DEFINE = |
| 135 | SILENT_DEFINE = |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 136 | |
willy tarreau | 5cbea6f | 2005-12-17 12:48:26 +0100 | [diff] [blame] | 137 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 138 | #### CPU dependant optimizations |
| 139 | # Some CFLAGS are set by default depending on the target CPU. Those flags only |
| 140 | # feed CPU_CFLAGS, which in turn feed CFLAGS, so it is not mandatory to use |
| 141 | # them. You should not have to change these options. Better use CPU_CFLAGS or |
| 142 | # even CFLAGS instead. |
| 143 | CPU_CFLAGS.generic = -O2 |
Willy Tarreau | a5899aa | 2010-11-28 07:41:00 +0100 | [diff] [blame] | 144 | CPU_CFLAGS.native = -O2 -march=native |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 145 | CPU_CFLAGS.i586 = -O2 -march=i586 |
| 146 | CPU_CFLAGS.i686 = -O2 -march=i686 |
| 147 | CPU_CFLAGS.ultrasparc = -O6 -mcpu=v9 -mtune=ultrasparc |
| 148 | CPU_CFLAGS = $(CPU_CFLAGS.$(CPU)) |
willy tarreau | 9da061b | 2005-12-17 12:29:56 +0100 | [diff] [blame] | 149 | |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 150 | #### ARCH dependant flags, may be overriden by CPU flags |
Willy Tarreau | a5899aa | 2010-11-28 07:41:00 +0100 | [diff] [blame] | 151 | ARCH_FLAGS.32 = -m32 |
| 152 | ARCH_FLAGS.64 = -m64 |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 153 | ARCH_FLAGS.i386 = -m32 -march=i386 |
| 154 | ARCH_FLAGS.i486 = -m32 -march=i486 |
| 155 | ARCH_FLAGS.i586 = -m32 -march=i586 |
| 156 | ARCH_FLAGS.i686 = -m32 -march=i686 |
| 157 | ARCH_FLAGS.x86_64 = -m64 -march=x86-64 |
| 158 | ARCH_FLAGS = $(ARCH_FLAGS.$(ARCH)) |
| 159 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 160 | #### Common CFLAGS |
| 161 | # These CFLAGS contain general optimization options, CPU-specific optimizations |
| 162 | # and debug flags. They may be overridden by some distributions which prefer to |
| 163 | # 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] | 164 | CFLAGS = $(ARCH_FLAGS) $(CPU_CFLAGS) $(DEBUG_CFLAGS) $(SPEC_CFLAGS) |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 165 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 166 | #### Common LDFLAGS |
| 167 | # These LDFLAGS are used as the first "ld" options, regardless of any library |
| 168 | # path or any other option. They may be changed to add any linker-specific |
| 169 | # option at the beginning of the ld command line. |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 170 | LDFLAGS = $(ARCH_FLAGS) -g |
willy tarreau | 036e1ce | 2005-12-17 13:46:33 +0100 | [diff] [blame] | 171 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 172 | #### Target system options |
| 173 | # Depending on the target platform, some options are set, as well as some |
| 174 | # CFLAGS and LDFLAGS. The USE_* values are set to "implicit" so that they are |
| 175 | # not reported in the build options string. You should not have to change |
| 176 | # anything there. |
| 177 | ifeq ($(TARGET),generic) |
| 178 | # generic system target has nothing specific |
| 179 | USE_POLL = implicit |
| 180 | USE_TPROXY = implicit |
| 181 | else |
| 182 | ifeq ($(TARGET),linux22) |
| 183 | # This is for Linux 2.2 |
| 184 | USE_GETSOCKNAME = implicit |
| 185 | USE_POLL = implicit |
| 186 | USE_TPROXY = implicit |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 187 | USE_LIBCRYPT = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 188 | else |
| 189 | ifeq ($(TARGET),linux24) |
| 190 | # This is for standard Linux 2.4 with netfilter but without epoll() |
| 191 | USE_GETSOCKNAME = implicit |
| 192 | USE_NETFILTER = implicit |
| 193 | USE_POLL = implicit |
| 194 | USE_TPROXY = implicit |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 195 | USE_LIBCRYPT = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 196 | else |
| 197 | ifeq ($(TARGET),linux24e) |
| 198 | # This is for enhanced Linux 2.4 with netfilter and epoll() patch > 0.21 |
| 199 | USE_GETSOCKNAME = implicit |
| 200 | USE_NETFILTER = implicit |
| 201 | USE_POLL = implicit |
| 202 | USE_EPOLL = implicit |
| 203 | USE_SEPOLL = implicit |
| 204 | USE_MY_EPOLL = implicit |
| 205 | USE_TPROXY = implicit |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 206 | USE_LIBCRYPT = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 207 | else |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 208 | ifeq ($(TARGET),linux26) |
| 209 | # This is for standard Linux 2.6 with netfilter and standard epoll() |
| 210 | USE_GETSOCKNAME = implicit |
| 211 | USE_NETFILTER = implicit |
| 212 | USE_POLL = implicit |
| 213 | USE_EPOLL = implicit |
| 214 | USE_SEPOLL = implicit |
| 215 | USE_TPROXY = implicit |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 216 | USE_LIBCRYPT = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 217 | else |
| 218 | ifeq ($(TARGET),solaris) |
| 219 | # This is for Solaris 8 |
Willy Tarreau | 64bc40b | 2011-03-23 20:00:53 +0100 | [diff] [blame] | 220 | # We also enable getaddrinfo() which works since solaris 8. |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 221 | USE_POLL = implicit |
| 222 | TARGET_CFLAGS = -fomit-frame-pointer -DFD_SETSIZE=65536 -D_REENTRANT |
| 223 | TARGET_LDFLAGS = -lnsl -lsocket |
| 224 | USE_TPROXY = implicit |
Willy Tarreau | 890a33e | 2010-03-04 19:10:14 +0100 | [diff] [blame] | 225 | USE_LIBCRYPT = implicit |
| 226 | USE_CRYPT_H = implicit |
Willy Tarreau | 64bc40b | 2011-03-23 20:00:53 +0100 | [diff] [blame] | 227 | USE_GETADDRINFO = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 228 | else |
| 229 | ifeq ($(TARGET),freebsd) |
| 230 | # This is for FreeBSD |
| 231 | USE_POLL = implicit |
| 232 | USE_KQUEUE = implicit |
| 233 | USE_TPROXY = implicit |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 234 | USE_LIBCRYPT = implicit |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 235 | else |
| 236 | ifeq ($(TARGET),openbsd) |
| 237 | # This is for OpenBSD >= 3.0 |
| 238 | USE_POLL = implicit |
| 239 | USE_KQUEUE = implicit |
| 240 | USE_TPROXY = implicit |
Yitzhak Sapir | 3208731 | 2009-06-14 18:27:54 +0200 | [diff] [blame] | 241 | else |
| 242 | ifeq ($(TARGET),cygwin) |
| 243 | # This is for Cygwin |
| 244 | # Cygwin adds IPv6 support only in version 1.7 (in beta right now). |
| 245 | USE_POLL = implicit |
| 246 | USE_TPROXY = implicit |
| 247 | TARGET_CFLAGS = $(if $(filter 1.5.%, $(shell uname -r)), -DUSE_IPV6 -DAF_INET6=23 -DINET6_ADDRSTRLEN=46, ) |
| 248 | endif # cygwin |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 249 | endif # openbsd |
| 250 | endif # freebsd |
| 251 | endif # solaris |
| 252 | endif # linux26 |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 253 | endif # linux24e |
| 254 | endif # linux24 |
| 255 | endif # linux22 |
| 256 | endif # generic |
willy tarreau | 036e1ce | 2005-12-17 13:46:33 +0100 | [diff] [blame] | 257 | |
willy tarreau | 4373b96 | 2005-12-18 01:32:31 +0100 | [diff] [blame] | 258 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 259 | #### Old-style REGEX library settings for compatibility with previous setups. |
| 260 | # It is still possible to use REGEX=<regex_lib> to select an alternative regex |
| 261 | # library. By default, we use libc's regex. On Solaris 8/Sparc, grouping seems |
| 262 | # to be broken using libc, so consider using pcre instead. Supported values are |
| 263 | # "libc", "pcre", and "static-pcre". Use of this method is deprecated in favor |
| 264 | # of "USE_PCRE" and "USE_STATIC_PCRE" (see build options below). |
| 265 | REGEX = libc |
willy tarreau | 9da061b | 2005-12-17 12:29:56 +0100 | [diff] [blame] | 266 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 267 | ifeq ($(REGEX),pcre) |
| 268 | USE_PCRE = 1 |
| 269 | $(warning WARNING! use of "REGEX=pcre" is deprecated, consider using "USE_PCRE=1" instead.) |
| 270 | endif |
willy tarreau | 0174f31 | 2005-12-18 01:02:42 +0100 | [diff] [blame] | 271 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 272 | ifeq ($(REGEX),static-pcre) |
| 273 | USE_STATIC_PCRE = 1 |
| 274 | $(warning WARNING! use of "REGEX=pcre-static" is deprecated, consider using "USE_STATIC_PCRE=1" instead.) |
| 275 | endif |
willy tarreau | 1c2ad21 | 2005-12-18 01:11:29 +0100 | [diff] [blame] | 276 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 277 | #### Old-style TPROXY settings |
| 278 | ifneq ($(findstring -DTPROXY,$(DEFINE)),) |
| 279 | USE_TPROXY = 1 |
| 280 | $(warning WARNING! use of "DEFINE=-DTPROXY" is deprecated, consider using "USE_TPROXY=1" instead.) |
| 281 | endif |
| 282 | |
| 283 | |
| 284 | #### Determine version, sub-version and release date. |
| 285 | # If GIT is found, and IGNOREGIT is not set, VERSION, SUBVERS and VERDATE are |
| 286 | # extracted from the last commit. Otherwise, use the contents of the files |
| 287 | # holding the same names in the current directory. |
willy tarreau | 0174f31 | 2005-12-18 01:02:42 +0100 | [diff] [blame] | 288 | |
Willy Tarreau | 6620dbb | 2007-01-02 00:44:53 +0100 | [diff] [blame] | 289 | ifeq ($(IGNOREGIT),) |
Willy Tarreau | 0131269 | 2010-08-07 22:26:20 +0200 | [diff] [blame] | 290 | 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] | 291 | ifneq ($(VERSION),) |
| 292 | # OK git is there and works. |
Willy Tarreau | 446024e | 2009-07-14 13:24:16 +0200 | [diff] [blame] | 293 | SUBVERS := $(shell comms=`git log --no-merges v$(VERSION).. 2>/dev/null |grep -c ^commit `; [ $$comms -gt 0 ] && echo "-$$comms" ) |
| 294 | 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] | 295 | endif |
| 296 | endif |
| 297 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 298 | # Last commit version not found, take it from the files. |
Willy Tarreau | ec69256 | 2007-09-09 23:31:11 +0200 | [diff] [blame] | 299 | ifeq ($(VERSION),) |
| 300 | VERSION := $(shell cat VERSION 2>/dev/null || touch VERSION) |
| 301 | endif |
| 302 | ifeq ($(SUBVERS),) |
| 303 | SUBVERS := $(shell cat SUBVERS 2>/dev/null || touch SUBVERS) |
| 304 | endif |
| 305 | ifeq ($(VERDATE),) |
| 306 | VERDATE := $(shell cat VERDATE 2>/dev/null || touch VERDATE) |
Willy Tarreau | 9bf6c6e | 2006-12-23 11:12:04 +0100 | [diff] [blame] | 307 | endif |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 308 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 309 | #### Build options |
| 310 | # Do not change these ones, enable USE_* variables instead. |
| 311 | OPTIONS_CFLAGS = |
| 312 | OPTIONS_LDFLAGS = |
| 313 | OPTIONS_OBJS = |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 314 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 315 | # This variable collects all USE_* values except those set to "implicit". This |
| 316 | # is used to report a list of all flags which were used to build this version. |
| 317 | # Do not assign anything to it. |
| 318 | BUILD_OPTIONS = |
| 319 | |
| 320 | # Return USE_xxx=$(USE_xxx) unless $(USE_xxx) = "implicit" |
| 321 | # Usage: |
| 322 | # BUILD_OPTIONS += $(call ignore_implicit,USE_xxx) |
| 323 | ignore_implicit = $(patsubst %=implicit,,$(1)=$($(1))) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 324 | |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 325 | ifneq ($(USE_TCPSPLICE),) |
Willy Tarreau | b55932d | 2009-08-16 13:20:32 +0200 | [diff] [blame] | 326 | $(error experimental option USE_TCPSPLICE has been removed, check USE_LINUX_SPLICE) |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 327 | endif |
| 328 | |
Willy Tarreau | 88e458a | 2009-01-25 16:13:42 +0100 | [diff] [blame] | 329 | ifneq ($(USE_LINUX_SPLICE),) |
| 330 | OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_SPLICE |
| 331 | BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_SPLICE) |
| 332 | endif |
| 333 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 334 | ifneq ($(USE_CTTPROXY),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 335 | OPTIONS_CFLAGS += -DCONFIG_HAP_CTTPROXY |
| 336 | OPTIONS_OBJS += src/cttproxy.o |
| 337 | BUILD_OPTIONS += $(call ignore_implicit,USE_CTTPROXY) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 338 | endif |
| 339 | |
| 340 | ifneq ($(USE_TPROXY),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 341 | OPTIONS_CFLAGS += -DTPROXY |
| 342 | BUILD_OPTIONS += $(call ignore_implicit,USE_TPROXY) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 343 | endif |
| 344 | |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 345 | ifneq ($(USE_LINUX_TPROXY),) |
| 346 | OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_TPROXY |
| 347 | BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_TPROXY) |
| 348 | endif |
| 349 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 350 | ifneq ($(USE_LIBCRYPT),) |
| 351 | OPTIONS_CFLAGS += -DCONFIG_HAP_CRYPT |
| 352 | BUILD_OPTIONS += $(call ignore_implicit,USE_LIBCRYPT) |
| 353 | OPTIONS_LDFLAGS += -lcrypt |
| 354 | endif |
| 355 | |
Willy Tarreau | 890a33e | 2010-03-04 19:10:14 +0100 | [diff] [blame] | 356 | ifneq ($(USE_CRYPT_H),) |
| 357 | OPTIONS_CFLAGS += -DNEED_CRYPT_H |
| 358 | BUILD_OPTIONS += $(call ignore_implicit,USE_CRYPT_H) |
| 359 | endif |
| 360 | |
Willy Tarreau | 64bc40b | 2011-03-23 20:00:53 +0100 | [diff] [blame] | 361 | ifneq ($(USE_GETADDRINFO),) |
| 362 | OPTIONS_CFLAGS += -DUSE_GETADDRINFO |
| 363 | BUILD_OPTIONS += $(call ignore_implicit,USE_GETADDRINFO) |
| 364 | endif |
| 365 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 366 | ifneq ($(USE_POLL),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 367 | OPTIONS_CFLAGS += -DENABLE_POLL |
| 368 | OPTIONS_OBJS += src/ev_poll.o |
| 369 | BUILD_OPTIONS += $(call ignore_implicit,USE_POLL) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 370 | endif |
| 371 | |
| 372 | ifneq ($(USE_EPOLL),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 373 | OPTIONS_CFLAGS += -DENABLE_EPOLL |
| 374 | OPTIONS_OBJS += src/ev_epoll.o |
| 375 | BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 376 | endif |
| 377 | |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 378 | ifneq ($(USE_SEPOLL),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 379 | OPTIONS_CFLAGS += -DENABLE_SEPOLL |
| 380 | OPTIONS_OBJS += src/ev_sepoll.o |
| 381 | BUILD_OPTIONS += $(call ignore_implicit,USE_SEPOLL) |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 382 | endif |
| 383 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 384 | ifneq ($(USE_MY_EPOLL),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 385 | OPTIONS_CFLAGS += -DUSE_MY_EPOLL |
| 386 | BUILD_OPTIONS += $(call ignore_implicit,USE_MY_EPOLL) |
| 387 | endif |
| 388 | |
| 389 | ifneq ($(USE_KQUEUE),) |
| 390 | OPTIONS_CFLAGS += -DENABLE_KQUEUE |
| 391 | OPTIONS_OBJS += src/ev_kqueue.o |
| 392 | BUILD_OPTIONS += $(call ignore_implicit,USE_KQUEUE) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 393 | endif |
| 394 | |
Willy Tarreau | 48d84c1 | 2010-11-14 17:09:33 +0100 | [diff] [blame] | 395 | ifneq ($(USE_VSYSCALL),) |
| 396 | OPTIONS_OBJS += src/i386-linux-vsys.o |
| 397 | OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_VSYSCALL |
| 398 | BUILD_OPTIONS += $(call ignore_implicit,USE_VSYSCALL) |
| 399 | endif |
| 400 | |
Willy Tarreau | 43d8fb2 | 2011-08-22 17:12:02 +0200 | [diff] [blame] | 401 | ifneq ($(USE_MY_SPLICE),) |
| 402 | OPTIONS_CFLAGS += -DUSE_MY_SPLICE |
| 403 | BUILD_OPTIONS += $(call ignore_implicit,USE_MY_SPLICE) |
| 404 | endif |
| 405 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 406 | ifneq ($(USE_NETFILTER),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 407 | OPTIONS_CFLAGS += -DNETFILTER |
| 408 | BUILD_OPTIONS += $(call ignore_implicit,USE_NETFILTER) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 409 | endif |
| 410 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 411 | ifneq ($(USE_GETSOCKNAME),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 412 | OPTIONS_CFLAGS += -DUSE_GETSOCKNAME |
| 413 | BUILD_OPTIONS += $(call ignore_implicit,USE_GETSOCKNAME) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 414 | endif |
| 415 | |
| 416 | ifneq ($(USE_REGPARM),) |
Willy Tarreau | cc05fba | 2009-10-27 21:40:18 +0100 | [diff] [blame] | 417 | OPTIONS_CFLAGS += -DCONFIG_REGPARM=3 |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 418 | BUILD_OPTIONS += $(call ignore_implicit,USE_REGPARM) |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 419 | endif |
| 420 | |
Willy Tarreau | f32d19a | 2008-03-07 10:02:14 +0100 | [diff] [blame] | 421 | # report DLMALLOC_SRC only if explicitly specified |
| 422 | ifneq ($(DLMALLOC_SRC),) |
| 423 | BUILD_OPTIONS += DLMALLOC_SRC=$(DLMALLOC_SRC) |
| 424 | endif |
| 425 | |
Willy Tarreau | f14358b | 2008-02-19 10:53:32 +0100 | [diff] [blame] | 426 | ifneq ($(USE_DLMALLOC),) |
| 427 | BUILD_OPTIONS += $(call ignore_implicit,USE_DLMALLOC) |
| 428 | ifeq ($(DLMALLOC_SRC),) |
| 429 | DLMALLOC_SRC=src/dlmalloc.c |
| 430 | endif |
| 431 | endif |
| 432 | |
Willy Tarreau | f2ef8c5 | 2007-07-11 09:19:31 +0200 | [diff] [blame] | 433 | ifneq ($(DLMALLOC_SRC),) |
Willy Tarreau | f32d19a | 2008-03-07 10:02:14 +0100 | [diff] [blame] | 434 | # DLMALLOC_THRES may be changed to match PAGE_SIZE on every platform |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 435 | DLMALLOC_THRES = 4096 |
| 436 | OPTIONS_OBJS += src/dlmalloc.o |
Willy Tarreau | f2ef8c5 | 2007-07-11 09:19:31 +0200 | [diff] [blame] | 437 | endif |
| 438 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 439 | ifneq ($(USE_PCRE),) |
| 440 | # PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is |
| 441 | # automatically detected but can be forced if required. |
| 442 | ifeq ($(PCREDIR),) |
| 443 | PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local) |
Willy Tarreau | 79b34bf | 2006-12-22 15:28:43 +0100 | [diff] [blame] | 444 | endif |
Christian Wiese | c820300 | 2008-11-20 14:47:04 +0100 | [diff] [blame] | 445 | ifeq ($(USE_STATIC_PCRE),) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 446 | OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include |
| 447 | OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -lpcreposix -lpcre |
Christian Wiese | c820300 | 2008-11-20 14:47:04 +0100 | [diff] [blame] | 448 | endif |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 449 | BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE) |
Willy Tarreau | 79b34bf | 2006-12-22 15:28:43 +0100 | [diff] [blame] | 450 | endif |
| 451 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 452 | ifneq ($(USE_STATIC_PCRE),) |
| 453 | # PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is |
| 454 | # automatically detected but can be forced if required. |
| 455 | ifeq ($(PCREDIR),) |
| 456 | PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local) |
| 457 | endif |
| 458 | OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include |
| 459 | OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -Wl,-Bstatic -lpcreposix -lpcre -Wl,-Bdynamic |
| 460 | BUILD_OPTIONS += $(call ignore_implicit,USE_STATIC_PCRE) |
| 461 | endif |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 462 | |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 463 | # This one can be changed to look for ebtree files in an external directory |
| 464 | EBTREE_DIR := ebtree |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 465 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 466 | #### Global compile options |
| 467 | VERBOSE_CFLAGS = $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 468 | COPTS = -Iinclude -I$(EBTREE_DIR) -Wall |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 469 | COPTS += $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) $(SILENT_DEFINE) |
| 470 | COPTS += $(DEBUG) $(OPTIONS_CFLAGS) $(ADDINC) |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 471 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 472 | ifneq ($(VERSION)$(SUBVERS),) |
| 473 | COPTS += -DCONFIG_HAPROXY_VERSION=\"$(VERSION)$(SUBVERS)\" |
| 474 | endif |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 475 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 476 | ifneq ($(VERDATE),) |
| 477 | COPTS += -DCONFIG_HAPROXY_DATE=\"$(VERDATE)\" |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 478 | endif |
| 479 | |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 480 | #### Global link options |
| 481 | # These options are added at the end of the "ld" command line. Use LDFLAGS to |
| 482 | # add options at the beginning of the "ld" command line if needed. |
| 483 | LDOPTS = $(TARGET_LDFLAGS) $(OPTIONS_LDFLAGS) $(ADDLIB) |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 484 | |
Willy Tarreau | e4208cb | 2008-03-11 06:37:39 +0100 | [diff] [blame] | 485 | ifeq ($(TARGET),) |
| 486 | all: |
| 487 | @echo |
| 488 | @echo "Due to too many reports of suboptimized setups, building without" |
| 489 | @echo "specifying the target is no longer supported. Please specify the" |
| 490 | @echo "target OS in the TARGET variable, in the following form:" |
| 491 | @echo |
| 492 | @echo " $ make TARGET=xxx" |
| 493 | @echo |
| 494 | @echo "Please choose the target among the following supported list :" |
| 495 | @echo |
Willy Tarreau | b181465 | 2009-03-29 15:08:25 +0200 | [diff] [blame] | 496 | @echo " linux26, linux24, linux24e, linux22, solaris" |
Yitzhak Sapir | 3208731 | 2009-06-14 18:27:54 +0200 | [diff] [blame] | 497 | @echo " freebsd, openbsd, cygwin, custom, generic" |
Willy Tarreau | e4208cb | 2008-03-11 06:37:39 +0100 | [diff] [blame] | 498 | @echo |
| 499 | @echo "Use \"generic\" if you don't want any optimization, \"custom\" if you" |
| 500 | @echo "want to precisely tweak every option, or choose the target which" |
| 501 | @echo "matches your OS the most in order to gain the maximum performance" |
| 502 | @echo "out of it. Please check the Makefile in case of doubts." |
| 503 | @echo |
| 504 | @exit 1 |
| 505 | else |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 506 | all: haproxy |
Willy Tarreau | e4208cb | 2008-03-11 06:37:39 +0100 | [diff] [blame] | 507 | endif |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 508 | |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 509 | OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 510 | src/uri_auth.o src/standard.o src/buffers.o src/log.o src/task.o \ |
Willy Tarreau | 982b6e3 | 2009-01-25 13:49:53 +0100 | [diff] [blame] | 511 | 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] | 512 | src/checks.o src/queue.o src/frontend.o src/proxy.o src/peers.o \ |
| 513 | src/stick_table.o src/proto_uxst.o \ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 514 | src/proto_http.o src/stream_sock.o src/appsession.o src/backend.o \ |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 515 | src/lb_chash.o src/lb_fwlc.o src/lb_fwrr.o src/lb_map.o \ |
Willy Tarreau | dded32d | 2008-11-30 19:48:07 +0100 | [diff] [blame] | 516 | src/stream_interface.o src/dumpstats.o src/proto_tcp.o \ |
Willy Tarreau | bc5258d | 2009-05-10 09:00:20 +0200 | [diff] [blame] | 517 | src/session.o src/hdr_idx.o src/ev_select.o src/signal.o \ |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 518 | src/acl.o src/pattern.o src/memory.o src/freq_ctr.o src/auth.o |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 519 | |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 520 | EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o \ |
| 521 | $(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \ |
| 522 | $(EBTREE_DIR)/ebmbtree.o $(EBTREE_DIR)/ebsttree.o \ |
| 523 | $(EBTREE_DIR)/ebimtree.o $(EBTREE_DIR)/ebistree.o |
| 524 | |
| 525 | # Not used right now |
| 526 | LIB_EBTREE = $(EBTREE_DIR)/libebtree.a |
| 527 | |
| 528 | haproxy: $(OBJS) $(OPTIONS_OBJS) $(EBTREE_OBJS) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 529 | $(LD) $(LDFLAGS) -o $@ $^ $(LDOPTS) |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 530 | |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 531 | $(LIB_EBTREE): $(EBTREE_OBJS) |
| 532 | $(AR) rv $@ $^ |
| 533 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 534 | objsize: haproxy |
| 535 | @objdump -t $^|grep ' g '|grep -F '.text'|awk '{print $$5 FS $$6}'|sort |
| 536 | |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 537 | %.o: %.c |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 538 | $(CC) $(COPTS) -c -o $@ $< |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 539 | |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 540 | src/haproxy.o: src/haproxy.c |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 541 | $(CC) $(COPTS) \ |
| 542 | -DBUILD_TARGET='"$(strip $(TARGET))"' \ |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 543 | -DBUILD_ARCH='"$(strip $(ARCH))"' \ |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 544 | -DBUILD_CPU='"$(strip $(CPU))"' \ |
| 545 | -DBUILD_CC='"$(strip $(CC))"' \ |
| 546 | -DBUILD_CFLAGS='"$(strip $(VERBOSE_CFLAGS))"' \ |
| 547 | -DBUILD_OPTIONS='"$(strip $(BUILD_OPTIONS))"' \ |
| 548 | -c -o $@ $< |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 549 | |
Willy Tarreau | f2ef8c5 | 2007-07-11 09:19:31 +0200 | [diff] [blame] | 550 | src/dlmalloc.o: $(DLMALLOC_SRC) |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 551 | $(CC) $(COPTS) -DDEFAULT_MMAP_THRESHOLD=$(DLMALLOC_THRES) -c -o $@ $< |
Willy Tarreau | f2ef8c5 | 2007-07-11 09:19:31 +0200 | [diff] [blame] | 552 | |
Christian Wiese | 19b5029 | 2008-03-12 15:57:54 +0200 | [diff] [blame] | 553 | install-man: |
Christian Wiese | ce8f342 | 2008-03-12 18:19:16 +0200 | [diff] [blame] | 554 | install -d $(DESTDIR)$(MANDIR)/man1 |
| 555 | install -m 644 doc/haproxy.1 $(DESTDIR)$(MANDIR)/man1 |
Christian Wiese | 19b5029 | 2008-03-12 15:57:54 +0200 | [diff] [blame] | 556 | |
Christian Wiese | bf34eb4 | 2008-03-12 17:24:49 +0200 | [diff] [blame] | 557 | install-doc: |
Christian Wiese | ce8f342 | 2008-03-12 18:19:16 +0200 | [diff] [blame] | 558 | install -d $(DESTDIR)$(DOCDIR) |
Christian Wiese | bf34eb4 | 2008-03-12 17:24:49 +0200 | [diff] [blame] | 559 | for x in configuration architecture haproxy-en haproxy-fr; do \ |
Christian Wiese | ce8f342 | 2008-03-12 18:19:16 +0200 | [diff] [blame] | 560 | install -m 644 doc/$$x.txt $(DESTDIR)$(DOCDIR) ; \ |
Christian Wiese | bf34eb4 | 2008-03-12 17:24:49 +0200 | [diff] [blame] | 561 | done |
| 562 | |
Willy Tarreau | e9bc01e | 2008-06-12 00:25:46 +0200 | [diff] [blame] | 563 | install-bin: haproxy |
Christian Wiese | ce8f342 | 2008-03-12 18:19:16 +0200 | [diff] [blame] | 564 | install -d $(DESTDIR)$(SBINDIR) |
| 565 | install haproxy $(DESTDIR)$(SBINDIR) |
Christian Wiese | a184aa2 | 2008-03-12 15:25:35 +0200 | [diff] [blame] | 566 | |
Christian Wiese | db5238d | 2008-03-12 18:28:13 +0200 | [diff] [blame] | 567 | install: install-bin install-man install-doc |
Christian Wiese | 4cf5d57 | 2008-03-12 16:21:05 +0200 | [diff] [blame] | 568 | |
willy tarreau | 0f7af91 | 2005-12-17 12:21:26 +0100 | [diff] [blame] | 569 | clean: |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 570 | rm -f *.[oas] src/*.[oas] ebtree/*.[oas] haproxy test |
| 571 | 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] | 572 | rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)$(SUBVERS).tar.gz |
| 573 | rm -f haproxy-$(VERSION) nohup.out gmon.out |
willy tarreau | efae184 | 2005-12-17 12:51:03 +0100 | [diff] [blame] | 574 | |
Willy Tarreau | ebe0af4 | 2009-10-10 22:20:44 +0200 | [diff] [blame] | 575 | tags: |
Willy Tarreau | 42d2c6c | 2010-03-29 09:35:20 +0200 | [diff] [blame] | 576 | find src include \( -name '*.c' -o -name '*.h' \) -print0 | \ |
Willy Tarreau | ebe0af4 | 2009-10-10 22:20:44 +0200 | [diff] [blame] | 577 | xargs -0 etags --declarations --members |
| 578 | |
willy tarreau | e114bf9 | 2006-03-19 21:30:14 +0100 | [diff] [blame] | 579 | tar: clean |
willy tarreau | cee272f | 2006-03-19 21:16:26 +0100 | [diff] [blame] | 580 | ln -s . haproxy-$(VERSION) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 581 | tar --exclude=haproxy-$(VERSION)/.git \ |
| 582 | --exclude=haproxy-$(VERSION)/haproxy-$(VERSION) \ |
| 583 | --exclude=haproxy-$(VERSION)/haproxy-$(VERSION).tar.gz \ |
| 584 | -cf - haproxy-$(VERSION)/* | gzip -c9 >haproxy-$(VERSION).tar.gz |
willy tarreau | cee272f | 2006-03-19 21:16:26 +0100 | [diff] [blame] | 585 | rm -f haproxy-$(VERSION) |
| 586 | |
Willy Tarreau | 9f0a901 | 2006-10-15 14:24:14 +0200 | [diff] [blame] | 587 | git-tar: clean |
Willy Tarreau | 63076b3 | 2009-07-23 13:43:33 +0200 | [diff] [blame] | 588 | 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] | 589 | |
| 590 | version: |
| 591 | @echo "VERSION: $(VERSION)" |
| 592 | @echo "SUBVERS: $(SUBVERS)" |
| 593 | @echo "VERDATE: $(VERDATE)" |
| 594 | |
| 595 | # never use this one if you don't know what it is used for. |
| 596 | update-version: |
| 597 | @echo "Ready to update the following versions :" |
| 598 | @echo "VERSION: $(VERSION)" |
| 599 | @echo "SUBVERS: $(SUBVERS)" |
| 600 | @echo "VERDATE: $(VERDATE)" |
| 601 | @echo "Press [ENTER] to continue or Ctrl-C to abort now.";read |
| 602 | echo "$(VERSION)" > VERSION |
| 603 | echo "$(SUBVERS)" > SUBVERS |
| 604 | echo "$(VERDATE)" > VERDATE |