blob: 1480fafffa5cb0b63804682f3b93f24e4906134c [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 Tarreau9f2b7302008-01-02 20:48:34 +01006# 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 Tarreauf14358b2008-02-19 10:53:32 +01009# USE_DLMALLOC : enable use of dlmalloc (see DLMALLOC_SRC)
Willy Tarreau9f2b7302008-01-02 20:48:34 +010010# USE_EPOLL : enable epoll() on Linux 2.6. Automatic.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010011# 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.
14# USE_NETFILTER : enable netfilter on Linux. Automatic.
15# USE_PCRE : enable use of libpcre for regex. Recommended.
16# USE_POLL : enable poll(). Automatic.
17# USE_REGPARM : enable regparm optimization. Recommended on x86.
18# USE_SEPOLL : enable speculative epoll(). Automatic.
19# USE_STATIC_PCRE : enable static libpcre. Recommended.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010020# USE_TPROXY : enable transparent proxy. Automatic.
Arnaud Cornetb94af612010-04-25 22:35:17 +020021# USE_LINUX_TPROXY : enable full transparent proxy (needs kernel 2.6.28).
Willy Tarreau88e458a2009-01-25 16:13:42 +010022# USE_LINUX_SPLICE : enable kernel 2.6 splicing (broken on old kernels)
Willy Tarreau890a33e2010-03-04 19:10:14 +010023# USE_LIBCRYPT : enable crypted passwords using -lcrypt
24# USE_CRYPT_H : set it if your system requires including crypt.h
Willy Tarreauf2ef8c52007-07-11 09:19:31 +020025#
Willy Tarreau9f2b7302008-01-02 20:48:34 +010026# Options can be forced by specifying "USE_xxx=1" or can be disabled by using
27# "USE_xxx=" (empty string).
28#
29# Variables useful for packagers :
30# CC is set to "gcc" by default and is used for compilation only.
31# LD is set to "gcc" by default and is used for linking only.
Willy Tarreauef7341d2009-04-11 19:45:50 +020032# ARCH may be useful to force build of 32-bit binary on 64-bit systems
Willy Tarreau9f2b7302008-01-02 20:48:34 +010033# CFLAGS is automatically set for the specified CPU and may be overridden.
34# LDFLAGS is automatically set to -g and may be overridden.
35# SMALL_OPTS may be used to specify some options to shrink memory usage.
36# DEBUG may be used to set some internal debugging options.
37# ADDINC may be used to complete the include path in the form -Ipath.
38# ADDLIB may be used to complete the library list in the form -Lpath -llib.
39# DEFINE may be used to specify any additional define, which will be reported
40# by "haproxy -vv" in CFLAGS.
41# SILENT_DEFINE may be used to specify other defines which will not be
42# reported by "haproxy -vv".
Christian Wiesea184aa22008-03-12 15:25:35 +020043# DESTDIR is not set by default and is used for installation only.
44# It might be useful to set DESTDIR if you want to install haproxy
45# in a sandbox.
46# PREFIX is set to "/usr/local" by default and is used for installation only.
47# SBINDIR is set to "$(PREFIX)/sbin" by default and is used for installation
48# only.
Christian Wiese19b50292008-03-12 15:57:54 +020049# MANDIR is set to "$(PREFIX)/share/man" by default and is used for
50# installation only.
Christian Wiesebf34eb42008-03-12 17:24:49 +020051# DOCDIR is set to "$(PREFIX)/doc/haproxy" by default and is used for
52# installation only.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010053#
54# Other variables :
55# DLMALLOC_SRC : build with dlmalloc, indicate the location of dlmalloc.c.
56# DLMALLOC_THRES : should match PAGE_SIZE on every platform (default: 4096).
57# PCREDIR : force the path to libpcre.
58# IGNOREGIT : ignore GIT commit versions if set.
59# VERSION : force haproxy version reporting.
60# SUBVERS : add a sub-version (eg: platform, model, ...).
61# VERDATE : force haproxy's release date.
Willy Tarreau4f60f162007-04-08 16:39:58 +020062
Christian Wiesea184aa22008-03-12 15:25:35 +020063#### Installation options.
64DESTDIR =
65PREFIX = /usr/local
66SBINDIR = $(PREFIX)/sbin
Jeremy Hinegardneref3b4032008-11-15 17:29:03 -070067MANDIR = $(PREFIX)/share/man
Christian Wiesebf34eb42008-03-12 17:24:49 +020068DOCDIR = $(PREFIX)/doc/haproxy
Willy Tarreau4f60f162007-04-08 16:39:58 +020069
Willy Tarreau9f2b7302008-01-02 20:48:34 +010070#### TARGET system
71# Use TARGET=<target_name> to optimize for a specifc target OS among the
72# following list (use the default "generic" if uncertain) :
Willy Tarreaub1814652009-03-29 15:08:25 +020073# generic, linux22, linux24, linux24e, linux26, solaris,
Yitzhak Sapir32087312009-06-14 18:27:54 +020074# freebsd, openbsd, cygwin, custom
Willy Tarreaue4208cb2008-03-11 06:37:39 +010075TARGET =
Willy Tarreau4f60f162007-04-08 16:39:58 +020076
Willy Tarreau9f2b7302008-01-02 20:48:34 +010077#### TARGET CPU
78# Use CPU=<cpu_name> to optimize for a particular CPU, among the following
79# list :
80# generic, i586, i686, ultrasparc, custom
willy tarreaueedaa9f2005-12-17 14:08:03 +010081CPU = generic
willy tarreau036e1ce2005-12-17 13:46:33 +010082
Willy Tarreauef7341d2009-04-11 19:45:50 +020083#### Architecture, used when not building for native architecture
84# Use ARCH=<arch_name> to force build for a specific architecture. Known
85# architectures will lead to "-m32" or "-m64" being added to CFLAGS and
86# LDFLAGS. This can be required to build 32-bit binaries on 64-bit targets.
87# Currently, only x86_64, i386, i486, i586 and i686 are understood.
88ARCH =
89
Willy Tarreau9f2b7302008-01-02 20:48:34 +010090#### Toolchain options.
91# GCC is normally used both for compiling and linking.
willy tarreaueedaa9f2005-12-17 14:08:03 +010092CC = gcc
Christian Wiesef6308302008-03-17 18:23:12 +010093LD = $(CC)
willy tarreaueedaa9f2005-12-17 14:08:03 +010094
Willy Tarreau9f2b7302008-01-02 20:48:34 +010095#### Debug flags (typically "-g").
96# Those flags only feed CFLAGS so it is not mandatory to use this form.
97DEBUG_CFLAGS = -g
willy tarreau036e1ce2005-12-17 13:46:33 +010098
Willy Tarreau9f2b7302008-01-02 20:48:34 +010099#### Memory usage tuning
100# If small memory footprint is required, you can reduce the buffer size. There
101# are 2 buffers per concurrent session, so 16 kB buffers will eat 32 MB memory
102# with 1000 concurrent sessions. Putting it slightly lower than a page size
103# will prevent the additional parameters to go beyond a page. 8030 bytes is
104# exactly 5.5 TCP segments of 1460 bytes and is generally good. Useful tuning
105# macros include :
106# SYSTEM_MAXCONN, BUFSIZE, MAXREWRITE, REQURI_LEN, CAPTURE_LEN.
107# Example: SMALL_OPTS = -DBUFSIZE=8030 -DMAXREWRITE=1030 -DSYSTEM_MAXCONN=1024
108SMALL_OPTS =
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100109
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100110#### Debug settings
111# You can enable debugging on specific code parts by setting DEBUG=-DDEBUG_xxx.
112# Currently defined DEBUG macros include DEBUG_FULL, DEBUG_MEMORY, DEBUG_FSM,
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100113# DEBUG_HASH and DEBUG_AUTH. Please check sources for exact meaning or do not
114# use at all.
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100115DEBUG =
willy tarreau1c2ad212005-12-18 01:11:29 +0100116
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100117#### Additional include and library dirs
118# Redefine this if you want to add some special PATH to include/libs
119ADDINC =
120ADDLIB =
willy tarreau64a3cc32005-12-18 01:13:11 +0100121
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100122#### Specific macro definitions
123# Use DEFINE=-Dxxx to set any tunable macro. Anything declared here will appear
124# in the build options reported by "haproxy -vv". Use SILENT_DEFINE if you do
125# not want to pollute the report with complex defines.
126DEFINE =
127SILENT_DEFINE =
willy tarreau0f7af912005-12-17 12:21:26 +0100128
willy tarreau5cbea6f2005-12-17 12:48:26 +0100129
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100130#### CPU dependant optimizations
131# Some CFLAGS are set by default depending on the target CPU. Those flags only
132# feed CPU_CFLAGS, which in turn feed CFLAGS, so it is not mandatory to use
133# them. You should not have to change these options. Better use CPU_CFLAGS or
134# even CFLAGS instead.
135CPU_CFLAGS.generic = -O2
136CPU_CFLAGS.i586 = -O2 -march=i586
137CPU_CFLAGS.i686 = -O2 -march=i686
138CPU_CFLAGS.ultrasparc = -O6 -mcpu=v9 -mtune=ultrasparc
139CPU_CFLAGS = $(CPU_CFLAGS.$(CPU))
willy tarreau9da061b2005-12-17 12:29:56 +0100140
Willy Tarreauef7341d2009-04-11 19:45:50 +0200141#### ARCH dependant flags, may be overriden by CPU flags
142ARCH_FLAGS.i386 = -m32 -march=i386
143ARCH_FLAGS.i486 = -m32 -march=i486
144ARCH_FLAGS.i586 = -m32 -march=i586
145ARCH_FLAGS.i686 = -m32 -march=i686
146ARCH_FLAGS.x86_64 = -m64 -march=x86-64
147ARCH_FLAGS = $(ARCH_FLAGS.$(ARCH))
148
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100149#### Common CFLAGS
150# These CFLAGS contain general optimization options, CPU-specific optimizations
151# and debug flags. They may be overridden by some distributions which prefer to
152# set all of them at once instead of playing with the CPU and DEBUG variables.
Willy Tarreauef7341d2009-04-11 19:45:50 +0200153CFLAGS = $(ARCH_FLAGS) $(CPU_CFLAGS) $(DEBUG_CFLAGS)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100154
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100155#### Common LDFLAGS
156# These LDFLAGS are used as the first "ld" options, regardless of any library
157# path or any other option. They may be changed to add any linker-specific
158# option at the beginning of the ld command line.
Willy Tarreauef7341d2009-04-11 19:45:50 +0200159LDFLAGS = $(ARCH_FLAGS) -g
willy tarreau036e1ce2005-12-17 13:46:33 +0100160
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100161#### Target system options
162# Depending on the target platform, some options are set, as well as some
163# CFLAGS and LDFLAGS. The USE_* values are set to "implicit" so that they are
164# not reported in the build options string. You should not have to change
165# anything there.
166ifeq ($(TARGET),generic)
167 # generic system target has nothing specific
168 USE_POLL = implicit
169 USE_TPROXY = implicit
170else
171ifeq ($(TARGET),linux22)
172 # This is for Linux 2.2
173 USE_GETSOCKNAME = implicit
174 USE_POLL = implicit
175 USE_TPROXY = implicit
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100176 USE_LIBCRYPT = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100177else
178ifeq ($(TARGET),linux24)
179 # This is for standard Linux 2.4 with netfilter but without epoll()
180 USE_GETSOCKNAME = implicit
181 USE_NETFILTER = implicit
182 USE_POLL = implicit
183 USE_TPROXY = implicit
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100184 USE_LIBCRYPT = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100185else
186ifeq ($(TARGET),linux24e)
187 # This is for enhanced Linux 2.4 with netfilter and epoll() patch > 0.21
188 USE_GETSOCKNAME = implicit
189 USE_NETFILTER = implicit
190 USE_POLL = implicit
191 USE_EPOLL = implicit
192 USE_SEPOLL = implicit
193 USE_MY_EPOLL = implicit
194 USE_TPROXY = implicit
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100195 USE_LIBCRYPT = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100196else
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100197ifeq ($(TARGET),linux26)
198 # This is for standard Linux 2.6 with netfilter and standard epoll()
199 USE_GETSOCKNAME = implicit
200 USE_NETFILTER = implicit
201 USE_POLL = implicit
202 USE_EPOLL = implicit
203 USE_SEPOLL = implicit
204 USE_TPROXY = implicit
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100205 USE_LIBCRYPT = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100206else
207ifeq ($(TARGET),solaris)
208 # This is for Solaris 8
209 USE_POLL = implicit
210 TARGET_CFLAGS = -fomit-frame-pointer -DFD_SETSIZE=65536 -D_REENTRANT
211 TARGET_LDFLAGS = -lnsl -lsocket
212 USE_TPROXY = implicit
Willy Tarreau890a33e2010-03-04 19:10:14 +0100213 USE_LIBCRYPT = implicit
214 USE_CRYPT_H = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100215else
216ifeq ($(TARGET),freebsd)
217 # This is for FreeBSD
218 USE_POLL = implicit
219 USE_KQUEUE = implicit
220 USE_TPROXY = implicit
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100221 USE_LIBCRYPT = implicit
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100222else
223ifeq ($(TARGET),openbsd)
224 # This is for OpenBSD >= 3.0
225 USE_POLL = implicit
226 USE_KQUEUE = implicit
227 USE_TPROXY = implicit
Yitzhak Sapir32087312009-06-14 18:27:54 +0200228else
229ifeq ($(TARGET),cygwin)
230 # This is for Cygwin
231 # Cygwin adds IPv6 support only in version 1.7 (in beta right now).
232 USE_POLL = implicit
233 USE_TPROXY = implicit
234 TARGET_CFLAGS = $(if $(filter 1.5.%, $(shell uname -r)), -DUSE_IPV6 -DAF_INET6=23 -DINET6_ADDRSTRLEN=46, )
235endif # cygwin
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100236endif # openbsd
237endif # freebsd
238endif # solaris
239endif # linux26
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100240endif # linux24e
241endif # linux24
242endif # linux22
243endif # generic
willy tarreau036e1ce2005-12-17 13:46:33 +0100244
willy tarreau4373b962005-12-18 01:32:31 +0100245
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100246#### Old-style REGEX library settings for compatibility with previous setups.
247# It is still possible to use REGEX=<regex_lib> to select an alternative regex
248# library. By default, we use libc's regex. On Solaris 8/Sparc, grouping seems
249# to be broken using libc, so consider using pcre instead. Supported values are
250# "libc", "pcre", and "static-pcre". Use of this method is deprecated in favor
251# of "USE_PCRE" and "USE_STATIC_PCRE" (see build options below).
252REGEX = libc
willy tarreau9da061b2005-12-17 12:29:56 +0100253
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100254ifeq ($(REGEX),pcre)
255USE_PCRE = 1
256$(warning WARNING! use of "REGEX=pcre" is deprecated, consider using "USE_PCRE=1" instead.)
257endif
willy tarreau0174f312005-12-18 01:02:42 +0100258
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100259ifeq ($(REGEX),static-pcre)
260USE_STATIC_PCRE = 1
261$(warning WARNING! use of "REGEX=pcre-static" is deprecated, consider using "USE_STATIC_PCRE=1" instead.)
262endif
willy tarreau1c2ad212005-12-18 01:11:29 +0100263
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100264#### Old-style TPROXY settings
265ifneq ($(findstring -DTPROXY,$(DEFINE)),)
266USE_TPROXY = 1
267$(warning WARNING! use of "DEFINE=-DTPROXY" is deprecated, consider using "USE_TPROXY=1" instead.)
268endif
269
270
271#### Determine version, sub-version and release date.
272# If GIT is found, and IGNOREGIT is not set, VERSION, SUBVERS and VERDATE are
273# extracted from the last commit. Otherwise, use the contents of the files
274# holding the same names in the current directory.
willy tarreau0174f312005-12-18 01:02:42 +0100275
Willy Tarreau6620dbb2007-01-02 00:44:53 +0100276ifeq ($(IGNOREGIT),)
Willy Tarreau01312692010-08-07 22:26:20 +0200277VERSION := $(shell [ -d .git/. ] && ref=`(git describe --tags --match 'v*') 2>/dev/null` && ref=$${ref%-g*} && echo "$${ref\#v}")
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100278ifneq ($(VERSION),)
279# OK git is there and works.
Willy Tarreau446024e2009-07-14 13:24:16 +0200280SUBVERS := $(shell comms=`git log --no-merges v$(VERSION).. 2>/dev/null |grep -c ^commit `; [ $$comms -gt 0 ] && echo "-$$comms" )
281VERDATE := $(shell date +%Y/%m/%d -d "`git log --pretty=fuller HEAD^.. 2>/dev/null | sed -ne '/^CommitDate:/{s/\(^[^ ]*:\)\|\( [-+].*\)//gp;q}'`" )
Willy Tarreauec692562007-09-09 23:31:11 +0200282endif
283endif
284
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100285# Last commit version not found, take it from the files.
Willy Tarreauec692562007-09-09 23:31:11 +0200286ifeq ($(VERSION),)
287VERSION := $(shell cat VERSION 2>/dev/null || touch VERSION)
288endif
289ifeq ($(SUBVERS),)
290SUBVERS := $(shell cat SUBVERS 2>/dev/null || touch SUBVERS)
291endif
292ifeq ($(VERDATE),)
293VERDATE := $(shell cat VERDATE 2>/dev/null || touch VERDATE)
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100294endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100295
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100296#### Build options
297# Do not change these ones, enable USE_* variables instead.
298OPTIONS_CFLAGS =
299OPTIONS_LDFLAGS =
300OPTIONS_OBJS =
Willy Tarreau77074d52006-11-12 23:57:19 +0100301
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100302# This variable collects all USE_* values except those set to "implicit". This
303# is used to report a list of all flags which were used to build this version.
304# Do not assign anything to it.
305BUILD_OPTIONS =
306
307# Return USE_xxx=$(USE_xxx) unless $(USE_xxx) = "implicit"
308# Usage:
309# BUILD_OPTIONS += $(call ignore_implicit,USE_xxx)
310ignore_implicit = $(patsubst %=implicit,,$(1)=$($(1)))
Willy Tarreau77074d52006-11-12 23:57:19 +0100311
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100312ifneq ($(USE_TCPSPLICE),)
Willy Tarreaub55932d2009-08-16 13:20:32 +0200313$(error experimental option USE_TCPSPLICE has been removed, check USE_LINUX_SPLICE)
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100314endif
315
Willy Tarreau88e458a2009-01-25 16:13:42 +0100316ifneq ($(USE_LINUX_SPLICE),)
317OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_SPLICE
318BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_SPLICE)
319endif
320
Willy Tarreau77074d52006-11-12 23:57:19 +0100321ifneq ($(USE_CTTPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100322OPTIONS_CFLAGS += -DCONFIG_HAP_CTTPROXY
323OPTIONS_OBJS += src/cttproxy.o
324BUILD_OPTIONS += $(call ignore_implicit,USE_CTTPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100325endif
326
327ifneq ($(USE_TPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100328OPTIONS_CFLAGS += -DTPROXY
329BUILD_OPTIONS += $(call ignore_implicit,USE_TPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100330endif
331
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100332ifneq ($(USE_LINUX_TPROXY),)
333OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_TPROXY
334BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_TPROXY)
335endif
336
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100337ifneq ($(USE_LIBCRYPT),)
338OPTIONS_CFLAGS += -DCONFIG_HAP_CRYPT
339BUILD_OPTIONS += $(call ignore_implicit,USE_LIBCRYPT)
340OPTIONS_LDFLAGS += -lcrypt
341endif
342
Willy Tarreau890a33e2010-03-04 19:10:14 +0100343ifneq ($(USE_CRYPT_H),)
344OPTIONS_CFLAGS += -DNEED_CRYPT_H
345BUILD_OPTIONS += $(call ignore_implicit,USE_CRYPT_H)
346endif
347
Willy Tarreau77074d52006-11-12 23:57:19 +0100348ifneq ($(USE_POLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100349OPTIONS_CFLAGS += -DENABLE_POLL
350OPTIONS_OBJS += src/ev_poll.o
351BUILD_OPTIONS += $(call ignore_implicit,USE_POLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100352endif
353
354ifneq ($(USE_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100355OPTIONS_CFLAGS += -DENABLE_EPOLL
356OPTIONS_OBJS += src/ev_epoll.o
357BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100358endif
359
Willy Tarreaude99e992007-04-16 00:53:59 +0200360ifneq ($(USE_SEPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100361OPTIONS_CFLAGS += -DENABLE_SEPOLL
362OPTIONS_OBJS += src/ev_sepoll.o
363BUILD_OPTIONS += $(call ignore_implicit,USE_SEPOLL)
Willy Tarreaude99e992007-04-16 00:53:59 +0200364endif
365
Willy Tarreau77074d52006-11-12 23:57:19 +0100366ifneq ($(USE_MY_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100367OPTIONS_CFLAGS += -DUSE_MY_EPOLL
368BUILD_OPTIONS += $(call ignore_implicit,USE_MY_EPOLL)
369endif
370
371ifneq ($(USE_KQUEUE),)
372OPTIONS_CFLAGS += -DENABLE_KQUEUE
373OPTIONS_OBJS += src/ev_kqueue.o
374BUILD_OPTIONS += $(call ignore_implicit,USE_KQUEUE)
Willy Tarreau77074d52006-11-12 23:57:19 +0100375endif
376
377ifneq ($(USE_NETFILTER),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100378OPTIONS_CFLAGS += -DNETFILTER
379BUILD_OPTIONS += $(call ignore_implicit,USE_NETFILTER)
Willy Tarreau77074d52006-11-12 23:57:19 +0100380endif
381
Willy Tarreau77074d52006-11-12 23:57:19 +0100382ifneq ($(USE_GETSOCKNAME),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100383OPTIONS_CFLAGS += -DUSE_GETSOCKNAME
384BUILD_OPTIONS += $(call ignore_implicit,USE_GETSOCKNAME)
Willy Tarreau77074d52006-11-12 23:57:19 +0100385endif
386
387ifneq ($(USE_REGPARM),)
Willy Tarreaucc05fba2009-10-27 21:40:18 +0100388OPTIONS_CFLAGS += -DCONFIG_REGPARM=3
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100389BUILD_OPTIONS += $(call ignore_implicit,USE_REGPARM)
Willy Tarreau77074d52006-11-12 23:57:19 +0100390endif
391
Willy Tarreauf32d19a2008-03-07 10:02:14 +0100392# report DLMALLOC_SRC only if explicitly specified
393ifneq ($(DLMALLOC_SRC),)
394BUILD_OPTIONS += DLMALLOC_SRC=$(DLMALLOC_SRC)
395endif
396
Willy Tarreauf14358b2008-02-19 10:53:32 +0100397ifneq ($(USE_DLMALLOC),)
398BUILD_OPTIONS += $(call ignore_implicit,USE_DLMALLOC)
399ifeq ($(DLMALLOC_SRC),)
400DLMALLOC_SRC=src/dlmalloc.c
401endif
402endif
403
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200404ifneq ($(DLMALLOC_SRC),)
Willy Tarreauf32d19a2008-03-07 10:02:14 +0100405# DLMALLOC_THRES may be changed to match PAGE_SIZE on every platform
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100406DLMALLOC_THRES = 4096
407OPTIONS_OBJS += src/dlmalloc.o
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200408endif
409
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100410ifneq ($(USE_PCRE),)
411# PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is
412# automatically detected but can be forced if required.
413ifeq ($(PCREDIR),)
414PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local)
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100415endif
Christian Wiesec8203002008-11-20 14:47:04 +0100416ifeq ($(USE_STATIC_PCRE),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100417OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include
418OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -lpcreposix -lpcre
Christian Wiesec8203002008-11-20 14:47:04 +0100419endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100420BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE)
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100421endif
422
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100423ifneq ($(USE_STATIC_PCRE),)
424# PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is
425# automatically detected but can be forced if required.
426ifeq ($(PCREDIR),)
427PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local)
428endif
429OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include
430OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -Wl,-Bstatic -lpcreposix -lpcre -Wl,-Bdynamic
431BUILD_OPTIONS += $(call ignore_implicit,USE_STATIC_PCRE)
432endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100433
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100434# This one can be changed to look for ebtree files in an external directory
435EBTREE_DIR := ebtree
Willy Tarreau77074d52006-11-12 23:57:19 +0100436
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100437#### Global compile options
438VERBOSE_CFLAGS = $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE)
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100439COPTS = -Iinclude -I$(EBTREE_DIR) -Wall
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100440COPTS += $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) $(SILENT_DEFINE)
441COPTS += $(DEBUG) $(OPTIONS_CFLAGS) $(ADDINC)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100442
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100443ifneq ($(VERSION)$(SUBVERS),)
444COPTS += -DCONFIG_HAPROXY_VERSION=\"$(VERSION)$(SUBVERS)\"
445endif
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100446
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100447ifneq ($(VERDATE),)
448COPTS += -DCONFIG_HAPROXY_DATE=\"$(VERDATE)\"
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100449endif
450
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100451#### Global link options
452# These options are added at the end of the "ld" command line. Use LDFLAGS to
453# add options at the beginning of the "ld" command line if needed.
454LDOPTS = $(TARGET_LDFLAGS) $(OPTIONS_LDFLAGS) $(ADDLIB)
willy tarreau0f7af912005-12-17 12:21:26 +0100455
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100456ifeq ($(TARGET),)
457all:
458 @echo
459 @echo "Due to too many reports of suboptimized setups, building without"
460 @echo "specifying the target is no longer supported. Please specify the"
461 @echo "target OS in the TARGET variable, in the following form:"
462 @echo
463 @echo " $ make TARGET=xxx"
464 @echo
465 @echo "Please choose the target among the following supported list :"
466 @echo
Willy Tarreaub1814652009-03-29 15:08:25 +0200467 @echo " linux26, linux24, linux24e, linux22, solaris"
Yitzhak Sapir32087312009-06-14 18:27:54 +0200468 @echo " freebsd, openbsd, cygwin, custom, generic"
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100469 @echo
470 @echo "Use \"generic\" if you don't want any optimization, \"custom\" if you"
471 @echo "want to precisely tweak every option, or choose the target which"
472 @echo "matches your OS the most in order to gain the maximum performance"
473 @echo "out of it. Please check the Makefile in case of doubts."
474 @echo
475 @exit 1
476else
willy tarreau0f7af912005-12-17 12:21:26 +0100477all: haproxy
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100478endif
willy tarreau0f7af912005-12-17 12:21:26 +0100479
Willy Tarreaudd815982007-10-16 12:25:14 +0200480OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \
Willy Tarreaubaaee002006-06-26 02:48:02 +0200481 src/uri_auth.o src/standard.o src/buffers.o src/log.o src/task.o \
Willy Tarreau982b6e32009-01-25 13:49:53 +0100482 src/time.o src/fd.o src/pipe.o src/regex.o src/cfgparse.o src/server.o \
Emeric Brun2b920a12010-09-23 18:30:22 +0200483 src/checks.o src/queue.o src/frontend.o src/proxy.o src/peers.o \
484 src/stick_table.o src/proto_uxst.o \
Willy Tarreaubaaee002006-06-26 02:48:02 +0200485 src/proto_http.o src/stream_sock.o src/appsession.o src/backend.o \
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200486 src/lb_chash.o src/lb_fwlc.o src/lb_fwrr.o src/lb_map.o \
Willy Tarreaudded32d2008-11-30 19:48:07 +0100487 src/stream_interface.o src/dumpstats.o src/proto_tcp.o \
Willy Tarreaubc5258d2009-05-10 09:00:20 +0200488 src/session.o src/hdr_idx.o src/ev_select.o src/signal.o \
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100489 src/acl.o src/pattern.o src/memory.o src/freq_ctr.o src/auth.o
Willy Tarreaubaaee002006-06-26 02:48:02 +0200490
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100491EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o \
492 $(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \
493 $(EBTREE_DIR)/ebmbtree.o $(EBTREE_DIR)/ebsttree.o \
494 $(EBTREE_DIR)/ebimtree.o $(EBTREE_DIR)/ebistree.o
495
496# Not used right now
497LIB_EBTREE = $(EBTREE_DIR)/libebtree.a
498
499haproxy: $(OBJS) $(OPTIONS_OBJS) $(EBTREE_OBJS)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100500 $(LD) $(LDFLAGS) -o $@ $^ $(LDOPTS)
willy tarreau0f7af912005-12-17 12:21:26 +0100501
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100502$(LIB_EBTREE): $(EBTREE_OBJS)
503 $(AR) rv $@ $^
504
Willy Tarreaubaaee002006-06-26 02:48:02 +0200505objsize: haproxy
506 @objdump -t $^|grep ' g '|grep -F '.text'|awk '{print $$5 FS $$6}'|sort
507
willy tarreau0f7af912005-12-17 12:21:26 +0100508%.o: %.c
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100509 $(CC) $(COPTS) -c -o $@ $<
willy tarreau0f7af912005-12-17 12:21:26 +0100510
Willy Tarreau7b066db2007-12-02 11:28:59 +0100511src/haproxy.o: src/haproxy.c
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100512 $(CC) $(COPTS) \
513 -DBUILD_TARGET='"$(strip $(TARGET))"' \
Willy Tarreauef7341d2009-04-11 19:45:50 +0200514 -DBUILD_ARCH='"$(strip $(ARCH))"' \
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100515 -DBUILD_CPU='"$(strip $(CPU))"' \
516 -DBUILD_CC='"$(strip $(CC))"' \
517 -DBUILD_CFLAGS='"$(strip $(VERBOSE_CFLAGS))"' \
518 -DBUILD_OPTIONS='"$(strip $(BUILD_OPTIONS))"' \
519 -c -o $@ $<
Willy Tarreau7b066db2007-12-02 11:28:59 +0100520
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200521src/dlmalloc.o: $(DLMALLOC_SRC)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100522 $(CC) $(COPTS) -DDEFAULT_MMAP_THRESHOLD=$(DLMALLOC_THRES) -c -o $@ $<
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200523
Christian Wiese19b50292008-03-12 15:57:54 +0200524install-man:
Christian Wiesece8f3422008-03-12 18:19:16 +0200525 install -d $(DESTDIR)$(MANDIR)/man1
526 install -m 644 doc/haproxy.1 $(DESTDIR)$(MANDIR)/man1
Christian Wiese19b50292008-03-12 15:57:54 +0200527
Christian Wiesebf34eb42008-03-12 17:24:49 +0200528install-doc:
Christian Wiesece8f3422008-03-12 18:19:16 +0200529 install -d $(DESTDIR)$(DOCDIR)
Christian Wiesebf34eb42008-03-12 17:24:49 +0200530 for x in configuration architecture haproxy-en haproxy-fr; do \
Christian Wiesece8f3422008-03-12 18:19:16 +0200531 install -m 644 doc/$$x.txt $(DESTDIR)$(DOCDIR) ; \
Christian Wiesebf34eb42008-03-12 17:24:49 +0200532 done
533
Willy Tarreaue9bc01e2008-06-12 00:25:46 +0200534install-bin: haproxy
Christian Wiesece8f3422008-03-12 18:19:16 +0200535 install -d $(DESTDIR)$(SBINDIR)
536 install haproxy $(DESTDIR)$(SBINDIR)
Christian Wiesea184aa22008-03-12 15:25:35 +0200537
Christian Wiesedb5238d2008-03-12 18:28:13 +0200538install: install-bin install-man install-doc
Christian Wiese4cf5d572008-03-12 16:21:05 +0200539
willy tarreau0f7af912005-12-17 12:21:26 +0100540clean:
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100541 rm -f *.[oas] src/*.[oas] ebtree/*.[oas] haproxy test
542 for dir in . src include/* doc ebtree; do rm -f $$dir/*~ $$dir/*.rej $$dir/core; done
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100543 rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)$(SUBVERS).tar.gz
544 rm -f haproxy-$(VERSION) nohup.out gmon.out
willy tarreauefae1842005-12-17 12:51:03 +0100545
Willy Tarreauebe0af42009-10-10 22:20:44 +0200546tags:
Willy Tarreau42d2c6c2010-03-29 09:35:20 +0200547 find src include \( -name '*.c' -o -name '*.h' \) -print0 | \
Willy Tarreauebe0af42009-10-10 22:20:44 +0200548 xargs -0 etags --declarations --members
549
willy tarreaue114bf92006-03-19 21:30:14 +0100550tar: clean
willy tarreaucee272f2006-03-19 21:16:26 +0100551 ln -s . haproxy-$(VERSION)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200552 tar --exclude=haproxy-$(VERSION)/.git \
553 --exclude=haproxy-$(VERSION)/haproxy-$(VERSION) \
554 --exclude=haproxy-$(VERSION)/haproxy-$(VERSION).tar.gz \
555 -cf - haproxy-$(VERSION)/* | gzip -c9 >haproxy-$(VERSION).tar.gz
willy tarreaucee272f2006-03-19 21:16:26 +0100556 rm -f haproxy-$(VERSION)
557
Willy Tarreau9f0a9012006-10-15 14:24:14 +0200558git-tar: clean
Willy Tarreau63076b32009-07-23 13:43:33 +0200559 git archive --format=tar --prefix="haproxy-$(VERSION)/" HEAD | gzip -9 > haproxy-$(VERSION)$(SUBVERS).tar.gz
Willy Tarreauec692562007-09-09 23:31:11 +0200560
561version:
562 @echo "VERSION: $(VERSION)"
563 @echo "SUBVERS: $(SUBVERS)"
564 @echo "VERDATE: $(VERDATE)"
565
566# never use this one if you don't know what it is used for.
567update-version:
568 @echo "Ready to update the following versions :"
569 @echo "VERSION: $(VERSION)"
570 @echo "SUBVERS: $(SUBVERS)"
571 @echo "VERDATE: $(VERDATE)"
572 @echo "Press [ENTER] to continue or Ctrl-C to abort now.";read
573 echo "$(VERSION)" > VERSION
574 echo "$(SUBVERS)" > SUBVERS
575 echo "$(VERDATE)" > VERDATE