blob: 9f2c9bce455cd9170a46914ed0918f9b1d4ce6a2 [file] [log] [blame]
Willy Tarreau9f2b7302008-01-02 20:48:34 +01001# This GNU Makefile supports different OS and CPU combinations.
2#
willy tarreaueedaa9f2005-12-17 14:08:03 +01003# You should use it this way :
Willy Tarreauef7341d2009-04-11 19:45:50 +02004# [g]make TARGET=os ARCH=arch CPU=cpu USE_xxx=1 ...
Willy Tarreauf2ef8c52007-07-11 09:19:31 +02005#
Willy Tarreau16119652018-11-19 08:15:54 +01006# By default the detailed commands are hidden for a cleaner output, but you may
7# see them by appending "V=1" to the make command.
8#
Willy Tarreau9f2b7302008-01-02 20:48:34 +01009# Valid USE_* options are the following. Most of them are automatically set by
Joseph Herlant4e8683c2018-11-09 17:50:30 -080010# the TARGET, others have to be explicitly specified :
Willy Tarreau9f2b7302008-01-02 20:48:34 +010011# USE_EPOLL : enable epoll() on Linux 2.6. Automatic.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010012# USE_KQUEUE : enable kqueue() on BSD. Automatic.
13# USE_MY_EPOLL : redefine epoll_* syscalls. Automatic.
Willy Tarreau43d8fb22011-08-22 17:12:02 +020014# USE_MY_SPLICE : redefine the splice syscall if build fails without.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010015# USE_NETFILTER : enable netfilter on Linux. Automatic.
16# USE_PCRE : enable use of libpcre for regex. Recommended.
Willy Tarreau91418062013-04-04 23:05:32 +020017# USE_PCRE_JIT : enable JIT for faster regex on libpcre >= 8.32
David Carlierf2592b22016-11-21 21:25:58 +000018# USE_PCRE2 : enable use of libpcre2 for regex.
19# USE_PCRE2_JIT : enable JIT for faster regex on libpcre2
Willy Tarreau9f2b7302008-01-02 20:48:34 +010020# USE_POLL : enable poll(). Automatic.
Emeric Brun9faf0712012-09-25 11:11:16 +020021# USE_PRIVATE_CACHE : disable shared memory cache of ssl sessions.
Christopher Fauleta1ae7e82017-10-25 17:55:27 +020022# USE_THREAD : enable threads support.
Emeric Bruncd1a5262014-05-07 23:11:42 +020023# USE_PTHREAD_PSHARED : enable pthread process shared mutex on sslcache.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010024# USE_REGPARM : enable regparm optimization. Recommended on x86.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010025# USE_STATIC_PCRE : enable static libpcre. Recommended.
David Carlierf2592b22016-11-21 21:25:58 +000026# USE_STATIC_PCRE2 : enable static libpcre2.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010027# USE_TPROXY : enable transparent proxy. Automatic.
Willy Tarreaue0c623d2012-06-04 00:42:09 +020028# USE_LINUX_TPROXY : enable full transparent proxy. Automatic.
29# USE_LINUX_SPLICE : enable kernel 2.6 splicing. Automatic.
Willy Tarreau890a33e2010-03-04 19:10:14 +010030# USE_LIBCRYPT : enable crypted passwords using -lcrypt
31# USE_CRYPT_H : set it if your system requires including crypt.h
Willy Tarreau48d84c12010-11-14 17:09:33 +010032# USE_VSYSCALL : enable vsyscall on Linux x86, bypassing libc
Willy Tarreau64bc40b2011-03-23 20:00:53 +010033# USE_GETADDRINFO : use getaddrinfo() to resolve IPv6 host names.
Emeric Brun7444f012012-05-18 15:48:30 +020034# USE_OPENSSL : enable use of OpenSSL. Recommended, but see below.
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010035# USE_LUA : enable Lua support.
Emeric Brun3e541d12012-09-03 11:14:36 +020036# USE_FUTEX : enable use of futex on kernel 2.6. Automatic.
Willy Tarreau1bc4aab2012-10-08 20:11:03 +020037# USE_ACCEPT4 : enable use of accept4() on linux. Automatic.
38# USE_MY_ACCEPT4 : use own implemention of accept4() if glibc < 2.10.
William Lallemand82fe75c2012-10-23 10:25:10 +020039# USE_ZLIB : enable zlib library support.
Willy Tarreau418b8c02015-03-29 03:32:06 +020040# USE_SLZ : enable slz library instead of zlib (pick at most one).
Willy Tarreaufc6c0322012-11-16 16:12:27 +010041# USE_CPU_AFFINITY : enable pinning processes to CPU on Linux. Automatic.
Lukas Tribus0999f762013-04-02 16:43:24 +020042# USE_TFO : enable TCP fast open. Supported on Linux >= 3.7.
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010043# USE_NS : enable network namespace support. Supported on Linux >= 2.6.24.
Willy Tarreau71b99ef2015-03-17 14:33:22 +010044# USE_DL : enable it if your system requires -ldl. Automatic on Linux.
Willy Tarreau58e90cb2018-10-18 16:28:54 +020045# USE_RT : enable it if your system requires -lrt. Automatic on Linux.
David Carliera03fb142015-06-01 14:00:07 +020046# USE_DEVICEATLAS : enable DeviceAtlas api.
Dragan Dosen93b38d92015-06-29 16:43:25 +020047# USE_51DEGREES : enable third party device detection library from 51Degrees
Tim Duesterhusd6942c82017-11-20 15:58:35 +010048# USE_SYSTEMD : enable sd_notify() support.
Willy Tarreauf2ef8c52007-07-11 09:19:31 +020049#
Willy Tarreau9f2b7302008-01-02 20:48:34 +010050# Options can be forced by specifying "USE_xxx=1" or can be disabled by using
51# "USE_xxx=" (empty string).
52#
53# Variables useful for packagers :
54# CC is set to "gcc" by default and is used for compilation only.
55# LD is set to "gcc" by default and is used for linking only.
Willy Tarreauef7341d2009-04-11 19:45:50 +020056# ARCH may be useful to force build of 32-bit binary on 64-bit systems
Willy Tarreau9f2b7302008-01-02 20:48:34 +010057# CFLAGS is automatically set for the specified CPU and may be overridden.
58# LDFLAGS is automatically set to -g and may be overridden.
Willy Tarreaub26835d2016-05-30 13:39:32 +020059# DEP may be cleared to ignore changes to include files during development
Willy Tarreau9f2b7302008-01-02 20:48:34 +010060# SMALL_OPTS may be used to specify some options to shrink memory usage.
61# DEBUG may be used to set some internal debugging options.
Willy Tarreau23cd43e2018-10-22 06:22:46 +020062# ERR may be set to non-empty to pass -Werror to the compiler
Willy Tarreau9f2b7302008-01-02 20:48:34 +010063# ADDINC may be used to complete the include path in the form -Ipath.
64# ADDLIB may be used to complete the library list in the form -Lpath -llib.
65# DEFINE may be used to specify any additional define, which will be reported
66# by "haproxy -vv" in CFLAGS.
67# SILENT_DEFINE may be used to specify other defines which will not be
68# reported by "haproxy -vv".
William Lallemanda6cfa902017-06-01 17:38:58 +020069# EXTRA is used to force building or not building some extra tools.
Christian Wiesea184aa22008-03-12 15:25:35 +020070# DESTDIR is not set by default and is used for installation only.
71# It might be useful to set DESTDIR if you want to install haproxy
72# in a sandbox.
73# PREFIX is set to "/usr/local" by default and is used for installation only.
74# SBINDIR is set to "$(PREFIX)/sbin" by default and is used for installation
75# only.
Christian Wiese19b50292008-03-12 15:57:54 +020076# MANDIR is set to "$(PREFIX)/share/man" by default and is used for
77# installation only.
Christian Wiesebf34eb42008-03-12 17:24:49 +020078# DOCDIR is set to "$(PREFIX)/doc/haproxy" by default and is used for
79# installation only.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010080#
81# Other variables :
Fabrice Fontaine7b4c8c32018-09-28 19:21:26 +020082# PCRE_CONFIG : force the binary path to get pcre config (by default
83# pcre-config)
Willy Tarreau9f2b7302008-01-02 20:48:34 +010084# PCREDIR : force the path to libpcre.
Willy Tarreau39793092013-02-13 12:39:06 +010085# PCRE_LIB : force the lib path to libpcre (defaults to $PCREDIR/lib).
86# PCRE_INC : force the include path to libpcre ($PCREDIR/inc)
Fabrice Fontaine7b4c8c32018-09-28 19:21:26 +020087# PCRE2_CONFIG : force the binary path to get pcre2 config (by default
88# pcre2-config)
Willy Tarreau9a059452013-09-17 15:26:39 +020089# SSL_LIB : force the lib path to libssl/libcrypto
90# SSL_INC : force the include path to libssl/libcrypto
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010091# LUA_LIB : force the lib path to lua
92# LUA_INC : force the include path to lua
Cyril Bontéc21adb52015-03-03 23:13:03 +010093# LUA_LIB_NAME : force the lib name (or automatically evaluated, by order of
Thierry FOURNIERf90838b2015-03-06 13:48:32 +010094# priority : lua5.3, lua53, lua).
Willy Tarreau9f2b7302008-01-02 20:48:34 +010095# IGNOREGIT : ignore GIT commit versions if set.
96# VERSION : force haproxy version reporting.
97# SUBVERS : add a sub-version (eg: platform, model, ...).
98# VERDATE : force haproxy's release date.
Frédéric Lécaille153b2b62018-06-18 19:32:10 +020099#
Frédéric Lécaille43361232019-01-11 10:10:21 +0100100# VTEST_PROGRAM : location of the vtest program to run reg-tests.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200101
Willy Tarreaub42233a2018-11-19 07:44:42 +0100102# verbosity: pass V=1 for verbose shell invocation
103V = 0
104Q = @
105ifeq ($V,1)
106Q=
107endif
108
Willy Tarreaud3a7f402017-09-13 16:54:28 +0200109# Function used to detect support of a given option by the compiler.
110# Usage: CFLAGS += $(call cc-opt,option). Eg: $(call cc-opt,-fwrapv)
111# Note: ensure the referencing variable is assigned using ":=" and not "=" to
112# call it only once.
Willy Tarreauf11ca5e2018-10-03 09:52:51 +0200113cc-opt = $(shell set -e; if $(CC) $(1) -E -xc - -o /dev/null </dev/null >&0 2>&0; then echo "$(1)"; fi;)
Willy Tarreaud3a7f402017-09-13 16:54:28 +0200114
Willy Tarreau0d7a2ae2018-10-16 18:11:34 +0200115# same but emits $2 if $1 is not supported
116cc-opt-alt = $(shell set -e; if $(CC) $(1) -E -xc - -o /dev/null </dev/null >&0 2>&0; then echo "$(1)"; else echo "$(2)"; fi;)
117
Willy Tarreaub7801662017-09-14 19:05:45 +0200118# Disable a warning when supported by the compiler. Don't put spaces around the
119# warning! And don't use cc-opt which doesn't always report an error until
120# another one is also returned.
121# Usage: CFLAGS += $(call cc-nowarn,warning). Eg: $(call cc-opt,format-truncation)
Willy Tarreauf11ca5e2018-10-03 09:52:51 +0200122cc-nowarn = $(shell set -e; if $(CC) -W$(1) -E -xc - -o /dev/null </dev/null >&0 2>&0; then echo "-Wno-$(1)"; fi;)
Willy Tarreaub7801662017-09-14 19:05:45 +0200123
Christian Wiesea184aa22008-03-12 15:25:35 +0200124#### Installation options.
125DESTDIR =
126PREFIX = /usr/local
127SBINDIR = $(PREFIX)/sbin
Jeremy Hinegardneref3b4032008-11-15 17:29:03 -0700128MANDIR = $(PREFIX)/share/man
Christian Wiesebf34eb42008-03-12 17:24:49 +0200129DOCDIR = $(PREFIX)/doc/haproxy
Willy Tarreau4f60f162007-04-08 16:39:58 +0200130
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100131#### TARGET system
132# Use TARGET=<target_name> to optimize for a specifc target OS among the
133# following list (use the default "generic" if uncertain) :
Willy Tarreaub1814652009-03-29 15:08:25 +0200134# generic, linux22, linux24, linux24e, linux26, solaris,
Jerome Duval38932c32015-10-19 23:01:16 +0000135# freebsd, openbsd, netbsd, cygwin, haiku, custom, aix51, aix52
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100136TARGET =
Willy Tarreau4f60f162007-04-08 16:39:58 +0200137
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100138#### TARGET CPU
139# Use CPU=<cpu_name> to optimize for a particular CPU, among the following
140# list :
Willy Tarreaua5899aa2010-11-28 07:41:00 +0100141# generic, native, i586, i686, ultrasparc, custom
willy tarreaueedaa9f2005-12-17 14:08:03 +0100142CPU = generic
willy tarreau036e1ce2005-12-17 13:46:33 +0100143
Willy Tarreauef7341d2009-04-11 19:45:50 +0200144#### Architecture, used when not building for native architecture
145# Use ARCH=<arch_name> to force build for a specific architecture. Known
146# architectures will lead to "-m32" or "-m64" being added to CFLAGS and
147# LDFLAGS. This can be required to build 32-bit binaries on 64-bit targets.
Willy Tarreaua5899aa2010-11-28 07:41:00 +0100148# Currently, only 32, 64, x86_64, i386, i486, i586 and i686 are understood.
Willy Tarreauef7341d2009-04-11 19:45:50 +0200149ARCH =
150
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100151#### Toolchain options.
152# GCC is normally used both for compiling and linking.
willy tarreaueedaa9f2005-12-17 14:08:03 +0100153CC = gcc
Christian Wiesef6308302008-03-17 18:23:12 +0100154LD = $(CC)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100155
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100156#### Debug flags (typically "-g").
157# Those flags only feed CFLAGS so it is not mandatory to use this form.
158DEBUG_CFLAGS = -g
willy tarreau036e1ce2005-12-17 13:46:33 +0100159
Willy Tarreau23cd43e2018-10-22 06:22:46 +0200160#### Add -Werror when set to non-empty
161ERR =
162
Willy Tarreaudb863332018-11-23 08:29:15 +0100163#### May be used to force running a specific set of reg-tests
164REG_TEST_FILES =
165
Willy Tarreau3c9a3fb2010-11-28 08:28:15 +0100166#### Compiler-specific flags that may be used to disable some negative over-
167# optimization or to silence some warnings. -fno-strict-aliasing is needed with
168# gcc >= 4.4.
Olivier Houchard73bdb322017-04-19 11:34:10 +0200169# We rely on signed integer wraparound on overflow, however clang think it
170# can do whatever it wants since it's an undefined behavior, so use -fwrapv
171# to be sure we get the intended behavior.
Willy Tarreaud3a7f402017-09-13 16:54:28 +0200172SPEC_CFLAGS := -fno-strict-aliasing -Wdeclaration-after-statement
Willy Tarreau0d7a2ae2018-10-16 18:11:34 +0200173SPEC_CFLAGS += $(call cc-opt-alt,-fwrapv,$(call cc-opt,-fno-strict-overflow))
Willy Tarreaub7801662017-09-14 19:05:45 +0200174SPEC_CFLAGS += $(call cc-nowarn,format-truncation)
175SPEC_CFLAGS += $(call cc-nowarn,address-of-packed-member)
Willy Tarreaueff9a9e2017-10-27 11:06:11 +0200176SPEC_CFLAGS += $(call cc-nowarn,unused-label)
Willy Tarreauf7db9302018-09-20 10:38:08 +0200177SPEC_CFLAGS += $(call cc-nowarn,sign-compare)
178SPEC_CFLAGS += $(call cc-nowarn,unused-parameter)
179SPEC_CFLAGS += $(call cc-nowarn,old-style-declaration)
180SPEC_CFLAGS += $(call cc-nowarn,ignored-qualifiers)
181SPEC_CFLAGS += $(call cc-nowarn,clobbered)
182SPEC_CFLAGS += $(call cc-nowarn,missing-field-initializers)
183SPEC_CFLAGS += $(call cc-nowarn,implicit-fallthrough)
Olivier Houchardc4e64602018-10-16 18:35:40 +0200184SPEC_CFLAGS += $(call cc-nowarn,stringop-overflow)
Olivier Houchard73bce432018-11-27 14:47:58 +0100185SPEC_CFLAGS += $(call cc-nowarn,cast-function-type)
Willy Tarreauf7db9302018-09-20 10:38:08 +0200186SPEC_CFLAGS += $(call cc-opt,-Wtype-limits)
187SPEC_CFLAGS += $(call cc-opt,-Wshift-negative-value)
188SPEC_CFLAGS += $(call cc-opt,-Wshift-overflow=2)
189SPEC_CFLAGS += $(call cc-opt,-Wduplicated-cond)
190SPEC_CFLAGS += $(call cc-opt,-Wnull-dereference)
Willy Tarreau3c9a3fb2010-11-28 08:28:15 +0100191
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100192#### Memory usage tuning
193# If small memory footprint is required, you can reduce the buffer size. There
194# are 2 buffers per concurrent session, so 16 kB buffers will eat 32 MB memory
195# with 1000 concurrent sessions. Putting it slightly lower than a page size
196# will prevent the additional parameters to go beyond a page. 8030 bytes is
197# exactly 5.5 TCP segments of 1460 bytes and is generally good. Useful tuning
198# macros include :
199# SYSTEM_MAXCONN, BUFSIZE, MAXREWRITE, REQURI_LEN, CAPTURE_LEN.
200# Example: SMALL_OPTS = -DBUFSIZE=8030 -DMAXREWRITE=1030 -DSYSTEM_MAXCONN=1024
201SMALL_OPTS =
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100202
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100203#### Debug settings
204# You can enable debugging on specific code parts by setting DEBUG=-DDEBUG_xxx.
205# Currently defined DEBUG macros include DEBUG_FULL, DEBUG_MEMORY, DEBUG_FSM,
Willy Tarreau158fa752017-11-22 15:47:29 +0100206# DEBUG_HASH, DEBUG_AUTH, DEBUG_SPOE, DEBUG_UAF and DEBUG_THREAD. Please check
207# sources for exact meaning or do not use at all.
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100208DEBUG =
willy tarreau1c2ad212005-12-18 01:11:29 +0100209
Willy Tarreau7de211c2012-05-25 23:53:16 +0200210#### Trace options
211# Use TRACE=1 to trace function calls to file "trace.out" or to stderr if not
212# possible.
213TRACE =
214
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100215#### Additional include and library dirs
216# Redefine this if you want to add some special PATH to include/libs
217ADDINC =
218ADDLIB =
willy tarreau64a3cc32005-12-18 01:13:11 +0100219
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100220#### Specific macro definitions
221# Use DEFINE=-Dxxx to set any tunable macro. Anything declared here will appear
222# in the build options reported by "haproxy -vv". Use SILENT_DEFINE if you do
223# not want to pollute the report with complex defines.
Emeric Brun76d88952012-10-05 15:47:31 +0200224# The following settings might be of interest when SSL is enabled :
225# LISTEN_DEFAULT_CIPHERS is a cipher suite string used to set the default SSL
226# ciphers on "bind" lines instead of using OpenSSL's defaults.
227# CONNECT_DEFAULT_CIPHERS is a cipher suite string used to set the default
228# SSL ciphers on "server" lines instead of using OpenSSL's defaults.
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100229DEFINE =
230SILENT_DEFINE =
willy tarreau0f7af912005-12-17 12:21:26 +0100231
William Lallemanda6cfa902017-06-01 17:38:58 +0200232#### extra programs to build
Willy Tarreaubc289da2014-05-10 12:16:21 +0200233# Force this to enable building extra programs or to disable them.
234# It's automatically appended depending on the targets.
235EXTRA =
willy tarreau5cbea6f2005-12-17 12:48:26 +0100236
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100237#### CPU dependant optimizations
238# Some CFLAGS are set by default depending on the target CPU. Those flags only
239# feed CPU_CFLAGS, which in turn feed CFLAGS, so it is not mandatory to use
240# them. You should not have to change these options. Better use CPU_CFLAGS or
241# even CFLAGS instead.
242CPU_CFLAGS.generic = -O2
Willy Tarreaua5899aa2010-11-28 07:41:00 +0100243CPU_CFLAGS.native = -O2 -march=native
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100244CPU_CFLAGS.i586 = -O2 -march=i586
245CPU_CFLAGS.i686 = -O2 -march=i686
246CPU_CFLAGS.ultrasparc = -O6 -mcpu=v9 -mtune=ultrasparc
247CPU_CFLAGS = $(CPU_CFLAGS.$(CPU))
willy tarreau9da061b2005-12-17 12:29:56 +0100248
Joseph Herlant4e8683c2018-11-09 17:50:30 -0800249#### ARCH dependant flags, may be overridden by CPU flags
Willy Tarreaua5899aa2010-11-28 07:41:00 +0100250ARCH_FLAGS.32 = -m32
251ARCH_FLAGS.64 = -m64
Willy Tarreauef7341d2009-04-11 19:45:50 +0200252ARCH_FLAGS.i386 = -m32 -march=i386
253ARCH_FLAGS.i486 = -m32 -march=i486
254ARCH_FLAGS.i586 = -m32 -march=i586
255ARCH_FLAGS.i686 = -m32 -march=i686
256ARCH_FLAGS.x86_64 = -m64 -march=x86-64
257ARCH_FLAGS = $(ARCH_FLAGS.$(ARCH))
258
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100259#### Common CFLAGS
260# These CFLAGS contain general optimization options, CPU-specific optimizations
261# and debug flags. They may be overridden by some distributions which prefer to
262# set all of them at once instead of playing with the CPU and DEBUG variables.
Willy Tarreau3c9a3fb2010-11-28 08:28:15 +0100263CFLAGS = $(ARCH_FLAGS) $(CPU_CFLAGS) $(DEBUG_CFLAGS) $(SPEC_CFLAGS)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100264
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100265#### Common LDFLAGS
266# These LDFLAGS are used as the first "ld" options, regardless of any library
267# path or any other option. They may be changed to add any linker-specific
268# option at the beginning of the ld command line.
Willy Tarreauef7341d2009-04-11 19:45:50 +0200269LDFLAGS = $(ARCH_FLAGS) -g
willy tarreau036e1ce2005-12-17 13:46:33 +0100270
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100271#### Target system options
272# Depending on the target platform, some options are set, as well as some
273# CFLAGS and LDFLAGS. The USE_* values are set to "implicit" so that they are
274# not reported in the build options string. You should not have to change
Willy Tarreau32e65ef2013-04-02 08:14:29 +0200275# anything there. poll() is always supported, unless explicitly disabled by
276# passing USE_POLL="" on the make command line.
277USE_POLL = default
278
Christopher Fauleta1ae7e82017-10-25 17:55:27 +0200279# Always enable threads support by default and let the Makefile detect if
280# HAProxy can be compiled with threads or not.
281
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100282ifeq ($(TARGET),generic)
283 # generic system target has nothing specific
284 USE_POLL = implicit
285 USE_TPROXY = implicit
286else
Jerome Duval38932c32015-10-19 23:01:16 +0000287ifeq ($(TARGET),haiku)
288 # For Haiku
289 TARGET_LDFLAGS = -lnetwork
290 USE_POLL = implicit
291 USE_TPROXY = implicit
292else
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100293ifeq ($(TARGET),linux22)
294 # This is for Linux 2.2
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100295 USE_POLL = implicit
296 USE_TPROXY = implicit
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100297 USE_LIBCRYPT = implicit
Willy Tarreau71b99ef2015-03-17 14:33:22 +0100298 USE_DL = implicit
Willy Tarreau58e90cb2018-10-18 16:28:54 +0200299 USE_RT = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100300else
301ifeq ($(TARGET),linux24)
302 # This is for standard Linux 2.4 with netfilter but without epoll()
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100303 USE_NETFILTER = implicit
304 USE_POLL = implicit
305 USE_TPROXY = implicit
Willy Tarreau943e7ec2018-10-29 19:16:27 +0100306 USE_CRYPT_H = implicit
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100307 USE_LIBCRYPT = implicit
Willy Tarreau71b99ef2015-03-17 14:33:22 +0100308 USE_DL = implicit
Willy Tarreau58e90cb2018-10-18 16:28:54 +0200309 USE_RT = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100310else
311ifeq ($(TARGET),linux24e)
312 # This is for enhanced Linux 2.4 with netfilter and epoll() patch > 0.21
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100313 USE_NETFILTER = implicit
314 USE_POLL = implicit
315 USE_EPOLL = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100316 USE_MY_EPOLL = implicit
317 USE_TPROXY = implicit
Willy Tarreau943e7ec2018-10-29 19:16:27 +0100318 USE_CRYPT_H = implicit
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100319 USE_LIBCRYPT = implicit
Willy Tarreau71b99ef2015-03-17 14:33:22 +0100320 USE_DL = implicit
Willy Tarreau58e90cb2018-10-18 16:28:54 +0200321 USE_RT = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100322else
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100323ifeq ($(TARGET),linux26)
324 # This is for standard Linux 2.6 with netfilter and standard epoll()
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100325 USE_NETFILTER = implicit
326 USE_POLL = implicit
327 USE_EPOLL = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100328 USE_TPROXY = implicit
Willy Tarreau943e7ec2018-10-29 19:16:27 +0100329 USE_CRYPT_H = implicit
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100330 USE_LIBCRYPT = implicit
Emeric Brun3e541d12012-09-03 11:14:36 +0200331 USE_FUTEX = implicit
Willy Tarreau71b99ef2015-03-17 14:33:22 +0100332 USE_DL = implicit
Willy Tarreau58e90cb2018-10-18 16:28:54 +0200333 USE_RT = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100334else
Willy Tarreaue0c623d2012-06-04 00:42:09 +0200335ifeq ($(TARGET),linux2628)
336 # This is for standard Linux >= 2.6.28 with netfilter, epoll, tproxy and splice
Willy Tarreaue0c623d2012-06-04 00:42:09 +0200337 USE_NETFILTER = implicit
338 USE_POLL = implicit
339 USE_EPOLL = implicit
Willy Tarreaue0c623d2012-06-04 00:42:09 +0200340 USE_TPROXY = implicit
Willy Tarreau943e7ec2018-10-29 19:16:27 +0100341 USE_CRYPT_H = implicit
Willy Tarreaue0c623d2012-06-04 00:42:09 +0200342 USE_LIBCRYPT = implicit
343 USE_LINUX_SPLICE= implicit
344 USE_LINUX_TPROXY= implicit
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200345 USE_ACCEPT4 = implicit
Emeric Brun3e541d12012-09-03 11:14:36 +0200346 USE_FUTEX = implicit
Willy Tarreaufc6c0322012-11-16 16:12:27 +0100347 USE_CPU_AFFINITY= implicit
Willy Tarreaub6daedd2013-01-07 16:57:09 +0100348 ASSUME_SPLICE_WORKS= implicit
Willy Tarreau71b99ef2015-03-17 14:33:22 +0100349 USE_DL = implicit
Willy Tarreau58e90cb2018-10-18 16:28:54 +0200350 USE_RT = implicit
Christopher Fauleta1ae7e82017-10-25 17:55:27 +0200351 USE_THREAD = implicit
Willy Tarreaue0c623d2012-06-04 00:42:09 +0200352else
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100353ifeq ($(TARGET),solaris)
354 # This is for Solaris 8
Willy Tarreau64bc40b2011-03-23 20:00:53 +0100355 # We also enable getaddrinfo() which works since solaris 8.
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100356 USE_POLL = implicit
David Carlier04919d52017-06-07 20:02:43 +0100357 TARGET_CFLAGS = -fomit-frame-pointer -DFD_SETSIZE=65536 -D_REENTRANT -D_XOPEN_SOURCE=500 -D__EXTENSIONS__
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100358 TARGET_LDFLAGS = -lnsl -lsocket
359 USE_TPROXY = implicit
Willy Tarreau890a33e2010-03-04 19:10:14 +0100360 USE_LIBCRYPT = implicit
361 USE_CRYPT_H = implicit
Willy Tarreau64bc40b2011-03-23 20:00:53 +0100362 USE_GETADDRINFO = implicit
Christopher Fauletf5d79ac2017-11-07 10:47:44 +0100363 USE_THREAD = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100364else
365ifeq ($(TARGET),freebsd)
366 # This is for FreeBSD
367 USE_POLL = implicit
368 USE_KQUEUE = implicit
369 USE_TPROXY = implicit
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100370 USE_LIBCRYPT = implicit
Christopher Fauleta1ae7e82017-10-25 17:55:27 +0200371 USE_THREAD = implicit
David Carlier903ddfd2017-11-29 11:05:12 +0000372 USE_CPU_AFFINITY= implicit
Olivier Houchard2292edf2019-02-25 14:26:54 +0100373 USE_CLOSEFROM = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100374else
Willy Tarreau8624cab2013-04-02 08:17:43 +0200375ifeq ($(TARGET),osx)
376 # This is for Mac OS/X
377 USE_POLL = implicit
378 USE_KQUEUE = implicit
379 USE_TPROXY = implicit
Willy Tarreaub684e7a2018-03-05 15:37:04 +0100380 EXPORT_SYMBOL = -export_dynamic
Willy Tarreau8624cab2013-04-02 08:17:43 +0200381else
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100382ifeq ($(TARGET),openbsd)
Daniel Jakots9705ba22016-09-27 19:22:21 +0200383 # This is for OpenBSD >= 5.7
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100384 USE_POLL = implicit
385 USE_KQUEUE = implicit
386 USE_TPROXY = implicit
Daniel Jakots9705ba22016-09-27 19:22:21 +0200387 USE_ACCEPT4 = implicit
David Carlier7567c402017-11-03 14:35:44 +0000388 USE_THREAD = implicit
Yitzhak Sapir32087312009-06-14 18:27:54 +0200389else
David Carlierb5714da2015-07-02 06:58:22 +0000390ifeq ($(TARGET),netbsd)
391 # This is for NetBSD
392 USE_POLL = implicit
393 USE_KQUEUE = implicit
394 USE_TPROXY = implicit
395else
Willy Tarreau50abe302014-04-02 20:44:43 +0200396ifeq ($(TARGET),aix51)
397 # This is for AIX 5.1
398 USE_POLL = implicit
399 USE_LIBCRYPT = implicit
400 TARGET_CFLAGS = -Dss_family=__ss_family
401 DEBUG_CFLAGS =
402else
Willy Tarreau7dec9652012-06-06 16:15:03 +0200403ifeq ($(TARGET),aix52)
404 # This is for AIX 5.2 and later
405 USE_POLL = implicit
406 USE_LIBCRYPT = implicit
407 TARGET_CFLAGS = -D_MSGQSUPPORT
408 DEBUG_CFLAGS =
409else
Yitzhak Sapir32087312009-06-14 18:27:54 +0200410ifeq ($(TARGET),cygwin)
411 # This is for Cygwin
412 # Cygwin adds IPv6 support only in version 1.7 (in beta right now).
413 USE_POLL = implicit
414 USE_TPROXY = implicit
415 TARGET_CFLAGS = $(if $(filter 1.5.%, $(shell uname -r)), -DUSE_IPV6 -DAF_INET6=23 -DINET6_ADDRSTRLEN=46, )
416endif # cygwin
Willy Tarreau7dec9652012-06-06 16:15:03 +0200417endif # aix52
Willy Tarreau50abe302014-04-02 20:44:43 +0200418endif # aix51
David Carlierb5714da2015-07-02 06:58:22 +0000419endif # netbsd
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100420endif # openbsd
Willy Tarreau8624cab2013-04-02 08:17:43 +0200421endif # osx
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100422endif # freebsd
423endif # solaris
Willy Tarreaue0c623d2012-06-04 00:42:09 +0200424endif # linux2628
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100425endif # linux26
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100426endif # linux24e
427endif # linux24
428endif # linux22
Jerome Duval38932c32015-10-19 23:01:16 +0000429endif # haiku
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100430endif # generic
willy tarreau036e1ce2005-12-17 13:46:33 +0100431
willy tarreau4373b962005-12-18 01:32:31 +0100432
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100433#### Determine version, sub-version and release date.
434# If GIT is found, and IGNOREGIT is not set, VERSION, SUBVERS and VERDATE are
435# extracted from the last commit. Otherwise, use the contents of the files
436# holding the same names in the current directory.
willy tarreau0174f312005-12-18 01:02:42 +0100437
Willy Tarreau6620dbb2007-01-02 00:44:53 +0100438ifeq ($(IGNOREGIT),)
Willy Tarreau689e4d72013-12-10 09:31:06 +0100439VERSION := $(shell [ -d .git/. ] && ref=`(git describe --tags --match 'v*' --abbrev=0) 2>/dev/null` && ref=$${ref%-g*} && echo "$${ref\#v}")
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100440ifneq ($(VERSION),)
441# OK git is there and works.
Willy Tarreau37459502014-07-16 11:38:52 +0200442SUBVERS := $(shell comms=`git log --format=oneline --no-merges v$(VERSION).. 2>/dev/null | wc -l | tr -dc '0-9'`; commit=`(git log -1 --pretty=%h --abbrev=6) 2>/dev/null`; [ $$comms -gt 0 ] && echo "-$$commit-$$comms")
Willy Tarreau689e4d72013-12-10 09:31:06 +0100443VERDATE := $(shell git log -1 --pretty=format:%ci | cut -f1 -d' ' | tr '-' '/')
Willy Tarreauec692562007-09-09 23:31:11 +0200444endif
445endif
446
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100447# Last commit version not found, take it from the files.
Willy Tarreauec692562007-09-09 23:31:11 +0200448ifeq ($(VERSION),)
449VERSION := $(shell cat VERSION 2>/dev/null || touch VERSION)
450endif
451ifeq ($(SUBVERS),)
Willy Tarreau6173bbe2013-12-16 01:34:39 +0100452SUBVERS := $(shell (grep -v '\$$Format' SUBVERS 2>/dev/null || touch SUBVERS) | head -n 1)
Willy Tarreauec692562007-09-09 23:31:11 +0200453endif
454ifeq ($(VERDATE),)
Willy Tarreauf1ed3272014-01-26 00:39:22 +0100455VERDATE := $(shell (grep -v '^\$$Format' VERDATE 2>/dev/null || touch VERDATE) | head -n 1 | cut -f1 -d' ' | tr '-' '/')
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100456endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100457
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100458#### Build options
459# Do not change these ones, enable USE_* variables instead.
460OPTIONS_CFLAGS =
461OPTIONS_LDFLAGS =
462OPTIONS_OBJS =
Willy Tarreau77074d52006-11-12 23:57:19 +0100463
Willy Tarreauada5d092019-01-10 10:01:03 +0100464#### Extra objects to be built and integrated (used only for development)
465EXTRA_OBJS =
466
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100467# This variable collects all USE_* values except those set to "implicit". This
468# is used to report a list of all flags which were used to build this version.
469# Do not assign anything to it.
470BUILD_OPTIONS =
471
472# Return USE_xxx=$(USE_xxx) unless $(USE_xxx) = "implicit"
473# Usage:
474# BUILD_OPTIONS += $(call ignore_implicit,USE_xxx)
475ignore_implicit = $(patsubst %=implicit,,$(1)=$($(1)))
Willy Tarreau77074d52006-11-12 23:57:19 +0100476
Willy Tarreau88e458a2009-01-25 16:13:42 +0100477ifneq ($(USE_LINUX_SPLICE),)
478OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_SPLICE
479BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_SPLICE)
480endif
481
Willy Tarreau77074d52006-11-12 23:57:19 +0100482ifneq ($(USE_TPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100483OPTIONS_CFLAGS += -DTPROXY
484BUILD_OPTIONS += $(call ignore_implicit,USE_TPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100485endif
486
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100487ifneq ($(USE_LINUX_TPROXY),)
488OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_TPROXY
489BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_TPROXY)
490endif
491
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100492ifneq ($(USE_LIBCRYPT),)
493OPTIONS_CFLAGS += -DCONFIG_HAP_CRYPT
494BUILD_OPTIONS += $(call ignore_implicit,USE_LIBCRYPT)
495OPTIONS_LDFLAGS += -lcrypt
496endif
497
Willy Tarreau890a33e2010-03-04 19:10:14 +0100498ifneq ($(USE_CRYPT_H),)
499OPTIONS_CFLAGS += -DNEED_CRYPT_H
500BUILD_OPTIONS += $(call ignore_implicit,USE_CRYPT_H)
501endif
502
Willy Tarreau64bc40b2011-03-23 20:00:53 +0100503ifneq ($(USE_GETADDRINFO),)
504OPTIONS_CFLAGS += -DUSE_GETADDRINFO
505BUILD_OPTIONS += $(call ignore_implicit,USE_GETADDRINFO)
506endif
507
Willy Tarreau418b8c02015-03-29 03:32:06 +0200508ifneq ($(USE_SLZ),)
509# Use SLZ_INC and SLZ_LIB to force path to zlib.h and libz.{a,so} if needed.
510SLZ_INC =
511SLZ_LIB =
512OPTIONS_CFLAGS += -DUSE_SLZ $(if $(SLZ_INC),-I$(SLZ_INC))
513BUILD_OPTIONS += $(call ignore_implicit,USE_SLZ)
514OPTIONS_LDFLAGS += $(if $(SLZ_LIB),-L$(SLZ_LIB)) -lslz
515endif
516
William Lallemand82fe75c2012-10-23 10:25:10 +0200517ifneq ($(USE_ZLIB),)
Willy Tarreaue2f49442012-02-10 20:37:26 +0100518# Use ZLIB_INC and ZLIB_LIB to force path to zlib.h and libz.{a,so} if needed.
519ZLIB_INC =
520ZLIB_LIB =
521OPTIONS_CFLAGS += -DUSE_ZLIB $(if $(ZLIB_INC),-I$(ZLIB_INC))
William Lallemand82fe75c2012-10-23 10:25:10 +0200522BUILD_OPTIONS += $(call ignore_implicit,USE_ZLIB)
Willy Tarreaue2f49442012-02-10 20:37:26 +0100523OPTIONS_LDFLAGS += $(if $(ZLIB_LIB),-L$(ZLIB_LIB)) -lz
William Lallemand82fe75c2012-10-23 10:25:10 +0200524endif
525
Willy Tarreau77074d52006-11-12 23:57:19 +0100526ifneq ($(USE_POLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100527OPTIONS_CFLAGS += -DENABLE_POLL
528OPTIONS_OBJS += src/ev_poll.o
529BUILD_OPTIONS += $(call ignore_implicit,USE_POLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100530endif
531
532ifneq ($(USE_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100533OPTIONS_CFLAGS += -DENABLE_EPOLL
534OPTIONS_OBJS += src/ev_epoll.o
535BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100536endif
537
538ifneq ($(USE_MY_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100539OPTIONS_CFLAGS += -DUSE_MY_EPOLL
540BUILD_OPTIONS += $(call ignore_implicit,USE_MY_EPOLL)
541endif
542
543ifneq ($(USE_KQUEUE),)
544OPTIONS_CFLAGS += -DENABLE_KQUEUE
545OPTIONS_OBJS += src/ev_kqueue.o
546BUILD_OPTIONS += $(call ignore_implicit,USE_KQUEUE)
Willy Tarreau77074d52006-11-12 23:57:19 +0100547endif
548
Willy Tarreau48d84c12010-11-14 17:09:33 +0100549ifneq ($(USE_VSYSCALL),)
550OPTIONS_OBJS += src/i386-linux-vsys.o
551OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_VSYSCALL
552BUILD_OPTIONS += $(call ignore_implicit,USE_VSYSCALL)
553endif
554
Willy Tarreaufc6c0322012-11-16 16:12:27 +0100555ifneq ($(USE_CPU_AFFINITY),)
556OPTIONS_CFLAGS += -DUSE_CPU_AFFINITY
557BUILD_OPTIONS += $(call ignore_implicit,USE_CPU_AFFINITY)
558endif
559
Willy Tarreau43d8fb22011-08-22 17:12:02 +0200560ifneq ($(USE_MY_SPLICE),)
561OPTIONS_CFLAGS += -DUSE_MY_SPLICE
562BUILD_OPTIONS += $(call ignore_implicit,USE_MY_SPLICE)
563endif
564
Willy Tarreaub6daedd2013-01-07 16:57:09 +0100565ifneq ($(ASSUME_SPLICE_WORKS),)
566OPTIONS_CFLAGS += -DASSUME_SPLICE_WORKS
567BUILD_OPTIONS += $(call ignore_implicit,ASSUME_SPLICE_WORKS)
568endif
569
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200570ifneq ($(USE_ACCEPT4),)
571OPTIONS_CFLAGS += -DUSE_ACCEPT4
572BUILD_OPTIONS += $(call ignore_implicit,USE_ACCEPT4)
573endif
574
575ifneq ($(USE_MY_ACCEPT4),)
576OPTIONS_CFLAGS += -DUSE_MY_ACCEPT4
577BUILD_OPTIONS += $(call ignore_implicit,USE_MY_ACCEPT4)
578endif
579
Willy Tarreau77074d52006-11-12 23:57:19 +0100580ifneq ($(USE_NETFILTER),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100581OPTIONS_CFLAGS += -DNETFILTER
582BUILD_OPTIONS += $(call ignore_implicit,USE_NETFILTER)
Willy Tarreau77074d52006-11-12 23:57:19 +0100583endif
584
Willy Tarreau77074d52006-11-12 23:57:19 +0100585ifneq ($(USE_REGPARM),)
Willy Tarreaucc05fba2009-10-27 21:40:18 +0100586OPTIONS_CFLAGS += -DCONFIG_REGPARM=3
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100587BUILD_OPTIONS += $(call ignore_implicit,USE_REGPARM)
Willy Tarreau77074d52006-11-12 23:57:19 +0100588endif
589
Willy Tarreau71b99ef2015-03-17 14:33:22 +0100590ifneq ($(USE_DL),)
591BUILD_OPTIONS += $(call ignore_implicit,USE_DL)
592OPTIONS_LDFLAGS += -ldl
593endif
594
Emeric Brun5f271852017-06-26 18:41:42 +0200595ifneq ($(USE_THREAD),)
596BUILD_OPTIONS += $(call ignore_implicit,USE_THREAD)
597OPTIONS_CFLAGS += -DUSE_THREAD
598OPTIONS_LDFLAGS += -lpthread
599endif
600
Willy Tarreau58e90cb2018-10-18 16:28:54 +0200601ifneq ($(USE_RT),)
602BUILD_OPTIONS += $(call ignore_implicit,USE_RT)
603OPTIONS_LDFLAGS += -lrt
604endif
605
Emeric Brun7444f012012-05-18 15:48:30 +0200606ifneq ($(USE_OPENSSL),)
David CARLIER7385f652015-11-06 15:13:06 +0000607# OpenSSL is packaged in various forms and with various dependencies.
Emeric Brun7444f012012-05-18 15:48:30 +0200608# In general -lssl is enough, but on some platforms, -lcrypto may be needed,
Willy Tarreau8f182d92012-09-10 09:11:22 +0200609# reason why it's added by default. Some even need -lz, then you'll need to
Willy Tarreau9a059452013-09-17 15:26:39 +0200610# pass it in the "ADDLIB" variable if needed. If your SSL libraries are not
611# in the usual path, use SSL_INC=/path/to/inc and SSL_LIB=/path/to/lib.
Willy Tarreau0e0bf802012-09-08 11:28:56 +0200612BUILD_OPTIONS += $(call ignore_implicit,USE_OPENSSL)
Willy Tarreau9a059452013-09-17 15:26:39 +0200613OPTIONS_CFLAGS += -DUSE_OPENSSL $(if $(SSL_INC),-I$(SSL_INC))
Willy Tarreaucd360ce2014-10-31 07:36:51 +0100614OPTIONS_LDFLAGS += $(if $(SSL_LIB),-L$(SSL_LIB)) -lssl -lcrypto
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200615ifneq ($(USE_DL),)
616OPTIONS_LDFLAGS += -ldl
617endif
William Lallemandb620e982017-11-02 16:00:51 +0100618OPTIONS_OBJS += src/ssl_sock.o
619endif
620
621# The private cache option affect the way the shctx is built
Emeric Brun9faf0712012-09-25 11:11:16 +0200622ifneq ($(USE_PRIVATE_CACHE),)
623OPTIONS_CFLAGS += -DUSE_PRIVATE_CACHE
624else
Emeric Bruncd1a5262014-05-07 23:11:42 +0200625ifneq ($(USE_PTHREAD_PSHARED),)
626OPTIONS_CFLAGS += -DUSE_PTHREAD_PSHARED
627OPTIONS_LDFLAGS += -lpthread
628else
Emeric Brun3e541d12012-09-03 11:14:36 +0200629ifneq ($(USE_FUTEX),)
630OPTIONS_CFLAGS += -DUSE_SYSCALL_FUTEX
Emeric Bruncd1a5262014-05-07 23:11:42 +0200631endif
Emeric Brun3e541d12012-09-03 11:14:36 +0200632endif
Emeric Brun7444f012012-05-18 15:48:30 +0200633endif
634
Olivier Houchard2292edf2019-02-25 14:26:54 +0100635ifneq ($(USE_CLOSEFROM),)
636OPTIONS_CFLAGS += -DUSE_CLOSEFROM
637endif
638
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +0100639ifneq ($(USE_LUA),)
Cyril Bontéc21adb52015-03-03 23:13:03 +0100640check_lua_lib = $(shell echo "int main(){}" | $(CC) -o /dev/null -x c - $(2) -l$(1) 2>/dev/null && echo $(1))
Nan Liub286fff2017-06-09 15:57:45 +0800641check_lua_inc = $(shell if [ -d $(2)$(1) ]; then echo $(2)$(1); fi;)
Cyril Bontéc21adb52015-03-03 23:13:03 +0100642
Cyril Bonté8e441fb2015-08-16 20:27:38 +0200643BUILD_OPTIONS += $(call ignore_implicit,USE_LUA)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +0100644OPTIONS_CFLAGS += -DUSE_LUA $(if $(LUA_INC),-I$(LUA_INC))
Thierry Fournier13113d62018-02-26 09:25:56 +0100645LUA_LD_FLAGS := -Wl,$(if $(EXPORT_SYMBOL),$(EXPORT_SYMBOL),--export-dynamic) $(if $(LUA_LIB),-L$(LUA_LIB))
Cyril Bontéc21adb52015-03-03 23:13:03 +0100646ifeq ($(LUA_LIB_NAME),)
647# Try to automatically detect the Lua library
Thierry FOURNIER463119c2015-03-10 00:35:36 +0100648LUA_LIB_NAME := $(firstword $(foreach lib,lua5.3 lua53 lua,$(call check_lua_lib,$(lib),$(LUA_LD_FLAGS))))
Cyril Bontéc21adb52015-03-03 23:13:03 +0100649ifeq ($(LUA_LIB_NAME),)
Thierry FOURNIER463119c2015-03-10 00:35:36 +0100650$(error unable to automatically detect the Lua library name, you can enforce its name with LUA_LIB_NAME=<name> (where <name> can be lua5.3, lua53, lua, ...))
Cyril Bontéc21adb52015-03-03 23:13:03 +0100651endif
Nan Liub286fff2017-06-09 15:57:45 +0800652LUA_INC := $(firstword $(foreach lib,lua5.3 lua53 lua,$(call check_lua_inc,$(lib),"/usr/include/")))
653ifneq ($(LUA_INC),)
654OPTIONS_CFLAGS += -I$(LUA_INC)
655endif
Cyril Bontéc21adb52015-03-03 23:13:03 +0100656endif
657
Willy Tarreau71b99ef2015-03-17 14:33:22 +0100658OPTIONS_LDFLAGS += $(LUA_LD_FLAGS) -l$(LUA_LIB_NAME) -lm
Vincent Bernate192cbb2015-07-16 20:52:51 +0200659ifneq ($(USE_DL),)
660OPTIONS_LDFLAGS += -ldl
661endif
Thierry Fournierfb0b5462016-01-21 09:28:58 +0100662OPTIONS_OBJS += src/hlua.o src/hlua_fcn.o
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +0100663endif
664
David Carliera03fb142015-06-01 14:00:07 +0200665ifneq ($(USE_DEVICEATLAS),)
David CARLIER7385f652015-11-06 15:13:06 +0000666ifeq ($(USE_PCRE),)
667$(error the DeviceAtlas module needs the PCRE library in order to compile)
668endif
Willy Tarreau82bd42e2015-06-02 14:10:28 +0200669# Use DEVICEATLAS_SRC and possibly DEVICEATLAS_INC and DEVICEATLAS_LIB to force path
Dragan Dosen93b38d92015-06-29 16:43:25 +0200670# to DeviceAtlas headers and libraries if needed.
Willy Tarreau82bd42e2015-06-02 14:10:28 +0200671DEVICEATLAS_SRC =
672DEVICEATLAS_INC = $(DEVICEATLAS_SRC)
673DEVICEATLAS_LIB = $(DEVICEATLAS_SRC)
Bertrand Jacquin3a2661d2016-10-06 00:32:39 +0100674ifeq ($(DEVICEATLAS_SRC),)
675OPTIONS_LDFLAGS += -lda
676else
David Carliera03fb142015-06-01 14:00:07 +0200677OPTIONS_OBJS += $(DEVICEATLAS_LIB)/json.o
678OPTIONS_OBJS += $(DEVICEATLAS_LIB)/dac.o
Bertrand Jacquin3a2661d2016-10-06 00:32:39 +0100679endif
David Carliera03fb142015-06-01 14:00:07 +0200680OPTIONS_OBJS += src/da.o
681OPTIONS_CFLAGS += -DUSE_DEVICEATLAS $(if $(DEVICEATLAS_INC),-I$(DEVICEATLAS_INC))
682BUILD_OPTIONS += $(call ignore_implicit,USE_DEVICEATLAS)
683endif
684
Thomas Holmes0ca65f82015-05-12 15:06:21 +0100685ifneq ($(USE_51DEGREES),)
Willy Tarreauc7203c72015-06-01 11:12:35 +0200686# Use 51DEGREES_SRC and possibly 51DEGREES_INC and 51DEGREES_LIB to force path
687# to 51degrees headers and libraries if needed.
68851DEGREES_SRC =
68951DEGREES_INC = $(51DEGREES_SRC)
69051DEGREES_LIB = $(51DEGREES_SRC)
James Rosewell3670eb12015-09-18 17:24:29 +0100691OPTIONS_OBJS += $(51DEGREES_LIB)/../cityhash/city.o
Dragan Dosen93b38d92015-06-29 16:43:25 +0200692OPTIONS_OBJS += $(51DEGREES_LIB)/51Degrees.o
693OPTIONS_OBJS += src/51d.o
Ben51Degrees4ddf59d2019-02-05 13:24:00 +0000694OPTIONS_CFLAGS += -DUSE_51DEGREES $(if $(51DEGREES_INC),-I$(51DEGREES_INC))
695ifeq ($(USE_THREAD),)
696OPTIONS_CFLAGS += -DFIFTYONEDEGREES_NO_THREADING
697else
698OPTIONS_OBJS += $(51DEGREES_LIB)/../threading.o
699endif
700
Thomas Holmes0ca65f82015-05-12 15:06:21 +0100701BUILD_OPTIONS += $(call ignore_implicit,USE_51DEGREES)
James Rosewell3670eb12015-09-18 17:24:29 +0100702OPTIONS_LDFLAGS += $(if $(51DEGREES_LIB),-L$(51DEGREES_LIB)) -lm
Thomas Holmes0ca65f82015-05-12 15:06:21 +0100703endif
704
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100705ifneq ($(USE_SYSTEMD),)
706BUILD_OPTIONS += $(call ignore_implicit,USE_SYSTEMD)
707OPTIONS_CFLAGS += -DUSE_SYSTEMD
708OPTIONS_LDFLAGS += -lsystemd
709endif
710
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900711ifneq ($(USE_PCRE)$(USE_STATIC_PCRE)$(USE_PCRE_JIT),)
David Carlierf2592b22016-11-21 21:25:58 +0000712ifneq ($(USE_PCRE2)$(USE_STATIC_PCRE2)$(USE_PCRE2_JIT),)
713$(error cannot compile both PCRE and PCRE2 support)
714endif
Willy Tarreau39793092013-02-13 12:39:06 +0100715# PCREDIR is used to automatically construct the PCRE_INC and PCRE_LIB paths,
716# by appending /include and /lib respectively. If your system does not use the
717# same sub-directories, simply force these variables instead of PCREDIR. It is
718# automatically detected but can be forced if required (for cross-compiling).
719# Forcing PCREDIR to an empty string will let the compiler use the default
720# locations.
721
Fabrice Fontaine7b4c8c32018-09-28 19:21:26 +0200722PCRE_CONFIG := pcre-config
723PCREDIR := $(shell $(PCRE_CONFIG) --prefix 2>/dev/null || echo /usr/local)
Willy Tarreau39793092013-02-13 12:39:06 +0100724ifneq ($(PCREDIR),)
725PCRE_INC := $(PCREDIR)/include
726PCRE_LIB := $(PCREDIR)/lib
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100727endif
Willy Tarreau39793092013-02-13 12:39:06 +0100728
Christian Wiesec8203002008-11-20 14:47:04 +0100729ifeq ($(USE_STATIC_PCRE),)
Willy Tarreau39793092013-02-13 12:39:06 +0100730# dynamic PCRE
731OPTIONS_CFLAGS += -DUSE_PCRE $(if $(PCRE_INC),-I$(PCRE_INC))
732OPTIONS_LDFLAGS += $(if $(PCRE_LIB),-L$(PCRE_LIB)) -lpcreposix -lpcre
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100733BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE)
Willy Tarreau39793092013-02-13 12:39:06 +0100734else
735# static PCRE
736OPTIONS_CFLAGS += -DUSE_PCRE $(if $(PCRE_INC),-I$(PCRE_INC))
737OPTIONS_LDFLAGS += $(if $(PCRE_LIB),-L$(PCRE_LIB)) -Wl,-Bstatic -lpcreposix -lpcre -Wl,-Bdynamic
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100738BUILD_OPTIONS += $(call ignore_implicit,USE_STATIC_PCRE)
739endif
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900740# JIT PCRE
741ifneq ($(USE_PCRE_JIT),)
742OPTIONS_CFLAGS += -DUSE_PCRE_JIT
Lukas Tribusea68d362013-04-04 12:24:16 +0200743BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE_JIT)
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900744endif
Willy Tarreau39793092013-02-13 12:39:06 +0100745endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100746
David Carlierf2592b22016-11-21 21:25:58 +0000747ifneq ($(USE_PCRE2)$(USE_STATIC_PCRE2)$(USE_PCRE2_JIT),)
Fabrice Fontaine7b4c8c32018-09-28 19:21:26 +0200748PCRE2_CONFIG := pcre2-config
749PCRE2DIR := $(shell $(PCRE2_CONFIG) --prefix 2>/dev/null || echo /usr/local)
David Carlierf2592b22016-11-21 21:25:58 +0000750ifneq ($(PCRE2DIR),)
751PCRE2_INC := $(PCRE2DIR)/include
752PCRE2_LIB := $(PCRE2DIR)/lib
753
754ifeq ($(PCRE2_WIDTH),)
755PCRE2_WIDTH = 8
756endif
757
758ifneq ($(PCRE2_WIDTH),8)
759ifneq ($(PCRE2_WIDTH),16)
760ifneq ($(PCRE2_WIDTH),32)
761$(error PCRE2_WIDTH needs to be set to either 8,16 or 32)
762endif
763endif
764endif
765
766
Fabrice Fontaine7b4c8c32018-09-28 19:21:26 +0200767PCRE2_LDFLAGS := $(shell $(PCRE2_CONFIG) --libs$(PCRE2_WIDTH) 2>/dev/null || echo -L/usr/local/lib -lpcre2-$(PCRE2_WIDTH))
David Carlierf2592b22016-11-21 21:25:58 +0000768
769ifeq ($(PCRE2_LDFLAGS),)
770$(error libpcre2-$(PCRE2_WIDTH) not found)
771else
772ifeq ($(PCRE2_WIDTH),8)
773PCRE2_LDFLAGS += -lpcre2-posix
774endif
775endif
776
777OPTIONS_CFLAGS += -DUSE_PCRE2 -DPCRE2_CODE_UNIT_WIDTH=$(PCRE2_WIDTH)
778OPTIONS_CFLAGS += $(if $(PCRE2_INC), -I$(PCRE2_INC))
779
780ifneq ($(USE_STATIC_PCRE2),)
781OPTIONS_LDFLAGS += $(if $(PCRE2_LIB),-L$(PCRE2_LIB)) -Wl,-Bstatic -L$(PCRE2_LIB) $(PCRE2_LDFLAGS) -Wl,-Bdynamic
782BUILD_OPTIONS += $(call ignore_implicit,USE_STATIC_PCRE2)
783else
784OPTIONS_LDFLAGS += $(if $(PCRE2_LIB),-L$(PCRE2_LIB)) -L$(PCRE2_LIB) $(PCRE2_LDFLAGS)
785BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE2)
786endif
787
788ifneq ($(USE_PCRE2_JIT),)
789OPTIONS_CFLAGS += -DUSE_PCRE2_JIT
790BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE2_JIT)
791endif
792
793endif
794endif
795
Lukas Tribus0999f762013-04-02 16:43:24 +0200796# TCP Fast Open
797ifneq ($(USE_TFO),)
798OPTIONS_CFLAGS += -DUSE_TFO
799BUILD_OPTIONS += $(call ignore_implicit,USE_TFO)
800endif
801
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100802# This one can be changed to look for ebtree files in an external directory
803EBTREE_DIR := ebtree
Willy Tarreau77074d52006-11-12 23:57:19 +0100804
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100805#### Global compile options
806VERBOSE_CFLAGS = $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE)
Willy Tarreauf7db9302018-09-20 10:38:08 +0200807COPTS = -Iinclude -I$(EBTREE_DIR) -Wall -Wextra
Willy Tarreau23cd43e2018-10-22 06:22:46 +0200808
809ifneq ($(ERR),)
810COPTS += -Werror
811endif
812
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100813COPTS += $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) $(SILENT_DEFINE)
814COPTS += $(DEBUG) $(OPTIONS_CFLAGS) $(ADDINC)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100815
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100816ifneq ($(VERSION)$(SUBVERS),)
817COPTS += -DCONFIG_HAPROXY_VERSION=\"$(VERSION)$(SUBVERS)\"
818endif
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100819
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100820ifneq ($(VERDATE),)
821COPTS += -DCONFIG_HAPROXY_DATE=\"$(VERDATE)\"
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100822endif
823
Willy Tarreau7de211c2012-05-25 23:53:16 +0200824ifneq ($(TRACE),)
825# if tracing is enabled, we want it to be as fast as possible
826TRACE_COPTS := $(filter-out -O0 -O1 -O2 -pg -finstrument-functions,$(COPTS)) -O3 -fomit-frame-pointer
827COPTS += -finstrument-functions
828endif
829
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100830ifneq ($(USE_NS),)
831OPTIONS_CFLAGS += -DCONFIG_HAP_NS
832BUILD_OPTIONS += $(call ignore_implicit,USE_NS)
Willy Tarreau7520e4f2018-11-11 14:38:09 +0100833OPTIONS_OBJS += src/namespace.o
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100834endif
835
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100836#### Global link options
837# These options are added at the end of the "ld" command line. Use LDFLAGS to
838# add options at the beginning of the "ld" command line if needed.
839LDOPTS = $(TARGET_LDFLAGS) $(OPTIONS_LDFLAGS) $(ADDLIB)
willy tarreau0f7af912005-12-17 12:21:26 +0100840
Willy Tarreau16119652018-11-19 08:15:54 +0100841ifeq ($V,1)
842cmd_CC = $(CC)
843cmd_LD = $(LD)
844cmd_AR = $(AR)
845else
846cmd_CC = $(Q)echo " CC $@";$(CC)
847cmd_LD = $(Q)echo " LD $@";$(LD)
848cmd_AR = $(Q)echo " AR $@";$(AR)
849endif
850
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100851ifeq ($(TARGET),)
852all:
853 @echo
854 @echo "Due to too many reports of suboptimized setups, building without"
855 @echo "specifying the target is no longer supported. Please specify the"
856 @echo "target OS in the TARGET variable, in the following form:"
857 @echo
858 @echo " $ make TARGET=xxx"
859 @echo
860 @echo "Please choose the target among the following supported list :"
861 @echo
Willy Tarreau9dbfa052018-11-19 08:11:40 +0100862 @echo " linux2628, linux26, linux24, linux24e, linux22, solaris,"
863 @echo " freebsd, netbsd, osx, openbsd, aix51, aix52, cygwin, haiku,"
864 @echo " generic, custom"
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100865 @echo
866 @echo "Use \"generic\" if you don't want any optimization, \"custom\" if you"
867 @echo "want to precisely tweak every option, or choose the target which"
868 @echo "matches your OS the most in order to gain the maximum performance"
869 @echo "out of it. Please check the Makefile in case of doubts."
870 @echo
871 @exit 1
872else
Willy Tarreaubc289da2014-05-10 12:16:21 +0200873all: haproxy $(EXTRA)
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100874endif
willy tarreau0f7af912005-12-17 12:21:26 +0100875
Willy Tarreau24018352018-11-19 07:10:59 +0100876OBJS = src/proto_http.o src/cfgparse-listen.o src/proto_htx.o src/stream.o \
877 src/mux_h2.o src/stats.o src/flt_spoe.o src/server.o src/checks.o \
878 src/haproxy.o src/cfgparse.o src/flt_http_comp.o src/http_fetch.o \
879 src/dns.o src/stick_table.o src/mux_h1.o src/peers.o src/standard.o \
880 src/proxy.o src/cli.o src/log.o src/backend.o src/pattern.o \
881 src/sample.o src/stream_interface.o src/proto_tcp.o src/listener.o \
882 src/h1.o src/cfgparse-global.o src/cache.o src/http_rules.o \
883 src/http_act.o src/tcp_rules.o src/filters.o src/connection.o \
884 src/session.o src/acl.o src/vars.o src/raw_sock.o src/map.o \
885 src/proto_uxst.o src/payload.o src/fd.o src/queue.o src/flt_trace.o \
886 src/task.o src/lb_chash.o src/frontend.o src/applet.o src/mux_pt.o \
887 src/signal.o src/ev_select.o src/proto_sockpair.o src/compression.o \
888 src/http_conv.o src/memory.o src/lb_fwrr.o src/channel.o src/htx.o \
889 src/uri_auth.o src/regex.o src/chunk.o src/pipe.o src/lb_fas.o \
890 src/lb_map.o src/lb_fwlc.o src/auth.o src/time.o src/hathreads.o \
891 src/http_htx.o src/buffer.o src/hpack-tbl.o src/shctx.o src/sha1.o \
892 src/http.o src/hpack-dec.o src/action.o src/proto_udp.o src/http_acl.o \
893 src/xxhash.o src/hpack-enc.o src/h2.o src/freq_ctr.o src/lru.o \
894 src/protocol.o src/arg.o src/hpack-huff.o src/hdr_idx.o src/base64.o \
Willy Tarreau909b9d82019-01-04 18:20:32 +0100895 src/hash.o src/mailers.o src/activity.o src/http_msg.o src/version.o
Willy Tarreaubaaee002006-06-26 02:48:02 +0200896
Willy Tarreauca308392017-11-05 13:31:29 +0100897EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o $(EBTREE_DIR)/eb32sctree.o \
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100898 $(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \
899 $(EBTREE_DIR)/ebmbtree.o $(EBTREE_DIR)/ebsttree.o \
900 $(EBTREE_DIR)/ebimtree.o $(EBTREE_DIR)/ebistree.o
901
Willy Tarreau7de211c2012-05-25 23:53:16 +0200902ifneq ($(TRACE),)
903OBJS += src/trace.o
904endif
905
Willy Tarreauada5d092019-01-10 10:01:03 +0100906ifneq ($(EXTRA_OBJS),)
907OBJS += $(EXTRA_OBJS)
908endif
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100909
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100910# Not used right now
911LIB_EBTREE = $(EBTREE_DIR)/libebtree.a
912
Willy Tarreaub26835d2016-05-30 13:39:32 +0200913# Used only for forced dependency checking. May be cleared during development.
914INCLUDES = $(wildcard include/*/*.h ebtree/*.h)
Willy Tarreau8225bb42016-05-30 15:16:10 +0200915DEP = $(INCLUDES) .build_opts
916
William Lallemandf1b60f72018-12-13 14:02:25 +0100917help:
918 $(Q)sed -ne "/^[^#]*$$/q;s/^#\(.*\)/\1/p" Makefile
919
Willy Tarreau8225bb42016-05-30 15:16:10 +0200920# Used only to force a rebuild if some build options change
921.build_opts: $(shell rm -f .build_opts.new; echo \'$(TARGET) $(BUILD_OPTIONS) $(VERBOSE_CFLAGS)\' > .build_opts.new; if cmp -s .build_opts .build_opts.new; then rm -f .build_opts.new; else mv -f .build_opts.new .build_opts; fi)
Willy Tarreaub26835d2016-05-30 13:39:32 +0200922
Willy Tarreau24018352018-11-19 07:10:59 +0100923haproxy: $(OPTIONS_OBJS) $(OBJS) $(EBTREE_OBJS)
Willy Tarreau16119652018-11-19 08:15:54 +0100924 $(cmd_LD) $(LDFLAGS) -o $@ $^ $(LDOPTS)
willy tarreau0f7af912005-12-17 12:21:26 +0100925
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100926$(LIB_EBTREE): $(EBTREE_OBJS)
Willy Tarreau16119652018-11-19 08:15:54 +0100927 $(cmd_AR) rv $@ $^
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100928
Willy Tarreaubaaee002006-06-26 02:48:02 +0200929objsize: haproxy
Willy Tarreaub42233a2018-11-19 07:44:42 +0100930 $(Q)objdump -t $^|grep ' g '|grep -F '.text'|awk '{print $$5 FS $$6}'|sort
Willy Tarreaubaaee002006-06-26 02:48:02 +0200931
Willy Tarreaub26835d2016-05-30 13:39:32 +0200932%.o: %.c $(DEP)
Willy Tarreau16119652018-11-19 08:15:54 +0100933 $(cmd_CC) $(COPTS) -c -o $@ $<
willy tarreau0f7af912005-12-17 12:21:26 +0100934
Willy Tarreau909b9d82019-01-04 18:20:32 +0100935# rebuild it every time
936.PHONY: src/version.c
937
Willy Tarreaub26835d2016-05-30 13:39:32 +0200938src/trace.o: src/trace.c $(DEP)
Willy Tarreau16119652018-11-19 08:15:54 +0100939 $(cmd_CC) $(TRACE_COPTS) -c -o $@ $<
Willy Tarreau7de211c2012-05-25 23:53:16 +0200940
Willy Tarreaub26835d2016-05-30 13:39:32 +0200941src/haproxy.o: src/haproxy.c $(DEP)
Willy Tarreau16119652018-11-19 08:15:54 +0100942 $(cmd_CC) $(COPTS) \
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100943 -DBUILD_TARGET='"$(strip $(TARGET))"' \
Willy Tarreauef7341d2009-04-11 19:45:50 +0200944 -DBUILD_ARCH='"$(strip $(ARCH))"' \
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100945 -DBUILD_CPU='"$(strip $(CPU))"' \
946 -DBUILD_CC='"$(strip $(CC))"' \
947 -DBUILD_CFLAGS='"$(strip $(VERBOSE_CFLAGS))"' \
948 -DBUILD_OPTIONS='"$(strip $(BUILD_OPTIONS))"' \
949 -c -o $@ $<
Willy Tarreau7b066db2007-12-02 11:28:59 +0100950
Christian Wiese19b50292008-03-12 15:57:54 +0200951install-man:
Willy Tarreau4ab5d032018-11-19 07:51:04 +0100952 $(Q)install -v -d "$(DESTDIR)$(MANDIR)"/man1
953 $(Q)install -v -m 644 doc/haproxy.1 "$(DESTDIR)$(MANDIR)"/man1
Christian Wiese19b50292008-03-12 15:57:54 +0200954
Vincent Bernat5c5147f2015-10-13 22:20:55 +0200955EXCLUDE_DOCUMENTATION = lgpl gpl coding-style
956DOCUMENTATION = $(filter-out $(EXCLUDE_DOCUMENTATION),$(patsubst doc/%.txt,%,$(wildcard doc/*.txt)))
957
Christian Wiesebf34eb42008-03-12 17:24:49 +0200958install-doc:
Willy Tarreau4ab5d032018-11-19 07:51:04 +0100959 $(Q)install -v -d "$(DESTDIR)$(DOCDIR)"
960 $(Q)for x in $(DOCUMENTATION); do \
961 install -v -m 644 doc/$$x.txt "$(DESTDIR)$(DOCDIR)" ; \
Christian Wiesebf34eb42008-03-12 17:24:49 +0200962 done
963
Willy Tarreau13d67bb2016-06-24 18:30:22 +0200964install-bin:
Willy Tarreaub42233a2018-11-19 07:44:42 +0100965 $(Q)for i in haproxy $(EXTRA); do \
Willy Tarreau13d67bb2016-06-24 18:30:22 +0200966 if ! [ -e "$$i" ]; then \
967 echo "Please run 'make' before 'make install'."; \
968 exit 1; \
969 fi; \
970 done
Willy Tarreau4ab5d032018-11-19 07:51:04 +0100971 $(Q)install -v -d "$(DESTDIR)$(SBINDIR)"
972 $(Q)install -v haproxy $(EXTRA) "$(DESTDIR)$(SBINDIR)"
Christian Wiesea184aa22008-03-12 15:25:35 +0200973
Christian Wiesedb5238d2008-03-12 18:28:13 +0200974install: install-bin install-man install-doc
Christian Wiese4cf5d572008-03-12 16:21:05 +0200975
Ilyas Bakirovdfb124f2015-02-04 17:14:26 +0600976uninstall:
Willy Tarreau4ab5d032018-11-19 07:51:04 +0100977 $(Q)rm -f "$(DESTDIR)$(MANDIR)"/man1/haproxy.1
978 $(Q)for x in $(DOCUMENTATION); do \
Ilyas Bakirovdfb124f2015-02-04 17:14:26 +0600979 rm -f "$(DESTDIR)$(DOCDIR)"/$$x.txt ; \
980 done
Willy Tarreau4ab5d032018-11-19 07:51:04 +0100981 $(Q)-rmdir "$(DESTDIR)$(DOCDIR)"
982 $(Q)rm -f "$(DESTDIR)$(SBINDIR)"/haproxy
Ilyas Bakirovdfb124f2015-02-04 17:14:26 +0600983
willy tarreau0f7af912005-12-17 12:21:26 +0100984clean:
Willy Tarreau6db82662018-11-19 08:14:40 +0100985 $(Q)rm -f *.[oas] src/*.[oas] ebtree/*.[oas] haproxy test .build_opts .build_opts.new
986 $(Q)for dir in . src include/* doc ebtree; do rm -f $$dir/*~ $$dir/*.rej $$dir/core; done
987 $(Q)rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)$(SUBVERS).tar.gz
988 $(Q)rm -f haproxy-$(VERSION) haproxy-$(VERSION)$(SUBVERS) nohup.out gmon.out
willy tarreauefae1842005-12-17 12:51:03 +0100989
Willy Tarreauebe0af42009-10-10 22:20:44 +0200990tags:
Willy Tarreau6db82662018-11-19 08:14:40 +0100991 $(Q)find src include \( -name '*.c' -o -name '*.h' \) -print0 | \
Willy Tarreauebe0af42009-10-10 22:20:44 +0200992 xargs -0 etags --declarations --members
993
William Lallemand9e5cc8d2013-10-18 16:26:39 +0200994cscope:
Willy Tarreau6db82662018-11-19 08:14:40 +0100995 $(Q)find src include -name "*.[ch]" -print | cscope -q -b -i -
William Lallemand9e5cc8d2013-10-18 16:26:39 +0200996
willy tarreaue114bf92006-03-19 21:30:14 +0100997tar: clean
Willy Tarreau4ab5d032018-11-19 07:51:04 +0100998 $(Q)ln -s . haproxy-$(VERSION)$(SUBVERS)
999 $(Q)tar --exclude=haproxy-$(VERSION)$(SUBVERS)/.git \
Willy Tarreau689e4d72013-12-10 09:31:06 +01001000 --exclude=haproxy-$(VERSION)$(SUBVERS)/haproxy-$(VERSION)$(SUBVERS) \
1001 --exclude=haproxy-$(VERSION)$(SUBVERS)/haproxy-$(VERSION)$(SUBVERS).tar.gz \
1002 -cf - haproxy-$(VERSION)$(SUBVERS)/* | gzip -c9 >haproxy-$(VERSION)$(SUBVERS).tar.gz
Willy Tarreau4ab5d032018-11-19 07:51:04 +01001003 $(Q)echo haproxy-$(VERSION)$(SUBVERS).tar.gz
1004 $(Q)rm -f haproxy-$(VERSION)$(SUBVERS)
willy tarreaucee272f2006-03-19 21:16:26 +01001005
Willy Tarreau05ed29c2012-12-20 15:00:44 +01001006git-tar:
Willy Tarreau4ab5d032018-11-19 07:51:04 +01001007 $(Q)git archive --format=tar --prefix="haproxy-$(VERSION)$(SUBVERS)/" HEAD | gzip -9 > haproxy-$(VERSION)$(SUBVERS).tar.gz
1008 $(Q)echo haproxy-$(VERSION)$(SUBVERS).tar.gz
Willy Tarreauec692562007-09-09 23:31:11 +02001009
1010version:
1011 @echo "VERSION: $(VERSION)"
1012 @echo "SUBVERS: $(SUBVERS)"
1013 @echo "VERDATE: $(VERDATE)"
1014
1015# never use this one if you don't know what it is used for.
1016update-version:
1017 @echo "Ready to update the following versions :"
1018 @echo "VERSION: $(VERSION)"
1019 @echo "SUBVERS: $(SUBVERS)"
1020 @echo "VERDATE: $(VERDATE)"
1021 @echo "Press [ENTER] to continue or Ctrl-C to abort now.";read
1022 echo "$(VERSION)" > VERSION
1023 echo "$(SUBVERS)" > SUBVERS
1024 echo "$(VERDATE)" > VERDATE
Frédéric Lécaille153b2b62018-06-18 19:32:10 +02001025
Willy Tarreaua8b12c62018-10-03 09:40:22 +02001026# just display the build options
1027opts:
1028 @echo -n 'Using: '
1029 @echo -n 'TARGET="$(strip $(TARGET))" '
1030 @echo -n 'ARCH="$(strip $(ARCH))" '
1031 @echo -n 'CPU="$(strip $(CPU))" '
1032 @echo -n 'CC="$(strip $(CC))" '
1033 @echo -n 'ARCH_FLAGS="$(strip $(ARCH_FLAGS))" '
1034 @echo -n 'CPU_CFLAGS="$(strip $(CPU_CFLAGS))" '
1035 @echo -n 'DEBUG_CFLAGS="$(strip $(DEBUG_CFLAGS))" '
1036 @echo "$(strip $(BUILD_OPTIONS))"
1037 @echo 'COPTS="$(strip $(COPTS))"'
1038 @echo 'LDFLAGS="$(strip $(LDFLAGS))"'
1039 @echo 'LDOPTS="$(strip $(LDOPTS))"'
1040 @echo 'OPTIONS_OBJS="$(strip $(OPTIONS_OBJS))"'
1041 @echo 'OBJS="$(strip $(OBJS))"'
1042
Frédéric Lécaillea3b4cbf2018-12-19 16:27:47 +01001043ifeq (reg-tests, $(firstword $(MAKECMDGOALS)))
1044 REGTEST_ARGS := $(wordlist 2, $(words $(MAKECMDGOALS)), $(MAKECMDGOALS))
1045 $(eval $(REGTEST_ARGS):;@true)
1046endif
1047
Frédéric Lécaille99316342018-08-22 10:41:33 +02001048# Target to run the regression testing script files.
Frédéric Lécaille153b2b62018-06-18 19:32:10 +02001049reg-tests:
Willy Tarreauc6c37b22019-03-15 17:29:53 +01001050 $(Q)./scripts/run-regtests.sh --LEVEL "$(LEVEL)" $(REGTEST_ARGS) $(REG_TEST_FILES)
Frédéric Lécaillea3b4cbf2018-12-19 16:27:47 +01001051.PHONY: $(REGTEST_ARGS)
Frederic Lecailled4f36e32018-12-13 22:15:05 +01001052
1053reg-tests-help:
1054 @echo
Frédéric Lécaille43361232019-01-11 10:10:21 +01001055 @echo "To launch the reg tests for haproxy, first export to your environment VTEST_PROGRAM variable to point to your vtest program:"
1056 @echo " $$ export VTEST_PROGRAM=/opt/local/bin/vtest"
Frederic Lecailled4f36e32018-12-13 22:15:05 +01001057 @echo "or"
Frédéric Lécaille43361232019-01-11 10:10:21 +01001058 @echo " $$ setenv VTEST_PROGRAM /opt/local/bin/vtest"
Frederic Lecailled4f36e32018-12-13 22:15:05 +01001059 @echo
1060 @echo "The same thing may be done to set your haproxy program with HAPROXY_PROGRAM but with ./haproxy as default value."
1061 @echo
1062 @echo "To run all the tests:"
1063 @echo " $$ make reg-tests"
1064 @echo
1065 @echo "You can also set the programs to be used on the command line:"
Frédéric Lécaille43361232019-01-11 10:10:21 +01001066 @echo " $$ VTEST_PROGRAM=<...> HAPROXY_PROGRAM=<...> make reg-tests"
Frederic Lecailled4f36e32018-12-13 22:15:05 +01001067 @echo
1068 @echo "To run tests with specific levels:"
1069 @echo " $$ LEVEL=1,3,4 make reg-tests #list of levels"
1070 @echo " $$ LEVEL=1-3,5-6 make reg-tests #list of range of levels"
1071 @echo
1072 @echo "About the levels:"
1073 @echo " LEVEL 1 scripts are dedicated to pure haproxy compliance tests (prefixed with 'h' letter)."
1074 @echo " LEVEL 2 scripts are slow scripts (prefixed with 's' letter)."
1075 @echo " LEVEL 3 scripts are low interest scripts (prefixed with 'l' letter)."
1076 @echo " LEVEL 4 scripts are in relation with bugs they help to reproduce (prefixed with 'b' letter)."
Willy Tarreaua1065a12019-01-08 09:56:20 +01001077 @echo " LEVEL 5 scripts are scripts triggering known broken behaviors for which there is still no fix (prefixed with 'k' letter)."
Frederic Lecailled4f36e32018-12-13 22:15:05 +01001078 @echo " LEVEL 6 scripts are experimental, typically used to develop new scripts (prefixed with 'e' lettre)."
1079
1080.PHONY: reg-tests reg-tests-help