blob: 0c9df3fb6230bc43d7982a44d83e9d9671c5641c [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.
Willy Tarreaub1e52e82008-01-13 14:49:51 +010021# USE_LINUX_TPROXY : enable full transparent proxy (need kernel patch).
Willy Tarreau88e458a2009-01-25 16:13:42 +010022# USE_LINUX_SPLICE : enable kernel 2.6 splicing (broken on old kernels)
Willy Tarreauf2ef8c52007-07-11 09:19:31 +020023#
Willy Tarreau9f2b7302008-01-02 20:48:34 +010024# Options can be forced by specifying "USE_xxx=1" or can be disabled by using
25# "USE_xxx=" (empty string).
26#
27# Variables useful for packagers :
28# CC is set to "gcc" by default and is used for compilation only.
29# LD is set to "gcc" by default and is used for linking only.
Willy Tarreauef7341d2009-04-11 19:45:50 +020030# ARCH may be useful to force build of 32-bit binary on 64-bit systems
Willy Tarreau9f2b7302008-01-02 20:48:34 +010031# CFLAGS is automatically set for the specified CPU and may be overridden.
32# LDFLAGS is automatically set to -g and may be overridden.
33# SMALL_OPTS may be used to specify some options to shrink memory usage.
34# DEBUG may be used to set some internal debugging options.
35# ADDINC may be used to complete the include path in the form -Ipath.
36# ADDLIB may be used to complete the library list in the form -Lpath -llib.
37# DEFINE may be used to specify any additional define, which will be reported
38# by "haproxy -vv" in CFLAGS.
39# SILENT_DEFINE may be used to specify other defines which will not be
40# reported by "haproxy -vv".
Christian Wiesea184aa22008-03-12 15:25:35 +020041# DESTDIR is not set by default and is used for installation only.
42# It might be useful to set DESTDIR if you want to install haproxy
43# in a sandbox.
44# PREFIX is set to "/usr/local" by default and is used for installation only.
45# SBINDIR is set to "$(PREFIX)/sbin" by default and is used for installation
46# only.
Christian Wiese19b50292008-03-12 15:57:54 +020047# MANDIR is set to "$(PREFIX)/share/man" by default and is used for
48# installation only.
Christian Wiesebf34eb42008-03-12 17:24:49 +020049# DOCDIR is set to "$(PREFIX)/doc/haproxy" by default and is used for
50# installation only.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010051#
52# Other variables :
53# DLMALLOC_SRC : build with dlmalloc, indicate the location of dlmalloc.c.
54# DLMALLOC_THRES : should match PAGE_SIZE on every platform (default: 4096).
55# PCREDIR : force the path to libpcre.
56# IGNOREGIT : ignore GIT commit versions if set.
57# VERSION : force haproxy version reporting.
58# SUBVERS : add a sub-version (eg: platform, model, ...).
59# VERDATE : force haproxy's release date.
Willy Tarreau4f60f162007-04-08 16:39:58 +020060
Christian Wiesea184aa22008-03-12 15:25:35 +020061#### Installation options.
62DESTDIR =
63PREFIX = /usr/local
64SBINDIR = $(PREFIX)/sbin
Jeremy Hinegardneref3b4032008-11-15 17:29:03 -070065MANDIR = $(PREFIX)/share/man
Christian Wiesebf34eb42008-03-12 17:24:49 +020066DOCDIR = $(PREFIX)/doc/haproxy
Willy Tarreau4f60f162007-04-08 16:39:58 +020067
Willy Tarreau9f2b7302008-01-02 20:48:34 +010068#### TARGET system
69# Use TARGET=<target_name> to optimize for a specifc target OS among the
70# following list (use the default "generic" if uncertain) :
Willy Tarreaub1814652009-03-29 15:08:25 +020071# generic, linux22, linux24, linux24e, linux26, solaris,
Yitzhak Sapir32087312009-06-14 18:27:54 +020072# freebsd, openbsd, cygwin, custom
Willy Tarreaue4208cb2008-03-11 06:37:39 +010073TARGET =
Willy Tarreau4f60f162007-04-08 16:39:58 +020074
Willy Tarreau9f2b7302008-01-02 20:48:34 +010075#### TARGET CPU
76# Use CPU=<cpu_name> to optimize for a particular CPU, among the following
77# list :
78# generic, i586, i686, ultrasparc, custom
willy tarreaueedaa9f2005-12-17 14:08:03 +010079CPU = generic
willy tarreau036e1ce2005-12-17 13:46:33 +010080
Willy Tarreauef7341d2009-04-11 19:45:50 +020081#### Architecture, used when not building for native architecture
82# Use ARCH=<arch_name> to force build for a specific architecture. Known
83# architectures will lead to "-m32" or "-m64" being added to CFLAGS and
84# LDFLAGS. This can be required to build 32-bit binaries on 64-bit targets.
85# Currently, only x86_64, i386, i486, i586 and i686 are understood.
86ARCH =
87
Willy Tarreau9f2b7302008-01-02 20:48:34 +010088#### Toolchain options.
89# GCC is normally used both for compiling and linking.
willy tarreaueedaa9f2005-12-17 14:08:03 +010090CC = gcc
Christian Wiesef6308302008-03-17 18:23:12 +010091LD = $(CC)
willy tarreaueedaa9f2005-12-17 14:08:03 +010092
Willy Tarreau9f2b7302008-01-02 20:48:34 +010093#### Debug flags (typically "-g").
94# Those flags only feed CFLAGS so it is not mandatory to use this form.
95DEBUG_CFLAGS = -g
willy tarreau036e1ce2005-12-17 13:46:33 +010096
Willy Tarreau9f2b7302008-01-02 20:48:34 +010097#### Memory usage tuning
98# If small memory footprint is required, you can reduce the buffer size. There
99# are 2 buffers per concurrent session, so 16 kB buffers will eat 32 MB memory
100# with 1000 concurrent sessions. Putting it slightly lower than a page size
101# will prevent the additional parameters to go beyond a page. 8030 bytes is
102# exactly 5.5 TCP segments of 1460 bytes and is generally good. Useful tuning
103# macros include :
104# SYSTEM_MAXCONN, BUFSIZE, MAXREWRITE, REQURI_LEN, CAPTURE_LEN.
105# Example: SMALL_OPTS = -DBUFSIZE=8030 -DMAXREWRITE=1030 -DSYSTEM_MAXCONN=1024
106SMALL_OPTS =
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100107
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100108#### Debug settings
109# You can enable debugging on specific code parts by setting DEBUG=-DDEBUG_xxx.
110# Currently defined DEBUG macros include DEBUG_FULL, DEBUG_MEMORY, DEBUG_FSM,
Willy Tarreau571ec982009-07-07 08:56:15 +0200111# and DEBUG_HASH. Please check sources for exact meaning or do not use at all.
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100112DEBUG =
willy tarreau1c2ad212005-12-18 01:11:29 +0100113
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100114#### Additional include and library dirs
115# Redefine this if you want to add some special PATH to include/libs
116ADDINC =
117ADDLIB =
willy tarreau64a3cc32005-12-18 01:13:11 +0100118
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100119#### Specific macro definitions
120# Use DEFINE=-Dxxx to set any tunable macro. Anything declared here will appear
121# in the build options reported by "haproxy -vv". Use SILENT_DEFINE if you do
122# not want to pollute the report with complex defines.
123DEFINE =
124SILENT_DEFINE =
willy tarreau0f7af912005-12-17 12:21:26 +0100125
willy tarreau5cbea6f2005-12-17 12:48:26 +0100126
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100127#### CPU dependant optimizations
128# Some CFLAGS are set by default depending on the target CPU. Those flags only
129# feed CPU_CFLAGS, which in turn feed CFLAGS, so it is not mandatory to use
130# them. You should not have to change these options. Better use CPU_CFLAGS or
131# even CFLAGS instead.
132CPU_CFLAGS.generic = -O2
133CPU_CFLAGS.i586 = -O2 -march=i586
134CPU_CFLAGS.i686 = -O2 -march=i686
135CPU_CFLAGS.ultrasparc = -O6 -mcpu=v9 -mtune=ultrasparc
136CPU_CFLAGS = $(CPU_CFLAGS.$(CPU))
willy tarreau9da061b2005-12-17 12:29:56 +0100137
Willy Tarreauef7341d2009-04-11 19:45:50 +0200138#### ARCH dependant flags, may be overriden by CPU flags
139ARCH_FLAGS.i386 = -m32 -march=i386
140ARCH_FLAGS.i486 = -m32 -march=i486
141ARCH_FLAGS.i586 = -m32 -march=i586
142ARCH_FLAGS.i686 = -m32 -march=i686
143ARCH_FLAGS.x86_64 = -m64 -march=x86-64
144ARCH_FLAGS = $(ARCH_FLAGS.$(ARCH))
145
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100146#### Common CFLAGS
147# These CFLAGS contain general optimization options, CPU-specific optimizations
148# and debug flags. They may be overridden by some distributions which prefer to
149# set all of them at once instead of playing with the CPU and DEBUG variables.
Willy Tarreauef7341d2009-04-11 19:45:50 +0200150CFLAGS = $(ARCH_FLAGS) $(CPU_CFLAGS) $(DEBUG_CFLAGS)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100151
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100152#### Common LDFLAGS
153# These LDFLAGS are used as the first "ld" options, regardless of any library
154# path or any other option. They may be changed to add any linker-specific
155# option at the beginning of the ld command line.
Willy Tarreauef7341d2009-04-11 19:45:50 +0200156LDFLAGS = $(ARCH_FLAGS) -g
willy tarreau036e1ce2005-12-17 13:46:33 +0100157
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100158#### Target system options
159# Depending on the target platform, some options are set, as well as some
160# CFLAGS and LDFLAGS. The USE_* values are set to "implicit" so that they are
161# not reported in the build options string. You should not have to change
162# anything there.
163ifeq ($(TARGET),generic)
164 # generic system target has nothing specific
165 USE_POLL = implicit
166 USE_TPROXY = implicit
167else
168ifeq ($(TARGET),linux22)
169 # This is for Linux 2.2
170 USE_GETSOCKNAME = implicit
171 USE_POLL = implicit
172 USE_TPROXY = implicit
173else
174ifeq ($(TARGET),linux24)
175 # This is for standard Linux 2.4 with netfilter but without epoll()
176 USE_GETSOCKNAME = implicit
177 USE_NETFILTER = implicit
178 USE_POLL = implicit
179 USE_TPROXY = implicit
180else
181ifeq ($(TARGET),linux24e)
182 # This is for enhanced Linux 2.4 with netfilter and epoll() patch > 0.21
183 USE_GETSOCKNAME = implicit
184 USE_NETFILTER = implicit
185 USE_POLL = implicit
186 USE_EPOLL = implicit
187 USE_SEPOLL = implicit
188 USE_MY_EPOLL = implicit
189 USE_TPROXY = implicit
190else
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100191ifeq ($(TARGET),linux26)
192 # This is for standard Linux 2.6 with netfilter and standard epoll()
193 USE_GETSOCKNAME = implicit
194 USE_NETFILTER = implicit
195 USE_POLL = implicit
196 USE_EPOLL = implicit
197 USE_SEPOLL = implicit
198 USE_TPROXY = implicit
199else
200ifeq ($(TARGET),solaris)
201 # This is for Solaris 8
202 USE_POLL = implicit
203 TARGET_CFLAGS = -fomit-frame-pointer -DFD_SETSIZE=65536 -D_REENTRANT
204 TARGET_LDFLAGS = -lnsl -lsocket
205 USE_TPROXY = implicit
206else
207ifeq ($(TARGET),freebsd)
208 # This is for FreeBSD
209 USE_POLL = implicit
210 USE_KQUEUE = implicit
211 USE_TPROXY = implicit
212else
213ifeq ($(TARGET),openbsd)
214 # This is for OpenBSD >= 3.0
215 USE_POLL = implicit
216 USE_KQUEUE = implicit
217 USE_TPROXY = implicit
Yitzhak Sapir32087312009-06-14 18:27:54 +0200218else
219ifeq ($(TARGET),cygwin)
220 # This is for Cygwin
221 # Cygwin adds IPv6 support only in version 1.7 (in beta right now).
222 USE_POLL = implicit
223 USE_TPROXY = implicit
224 TARGET_CFLAGS = $(if $(filter 1.5.%, $(shell uname -r)), -DUSE_IPV6 -DAF_INET6=23 -DINET6_ADDRSTRLEN=46, )
225endif # cygwin
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100226endif # openbsd
227endif # freebsd
228endif # solaris
229endif # linux26
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100230endif # linux24e
231endif # linux24
232endif # linux22
233endif # generic
willy tarreau036e1ce2005-12-17 13:46:33 +0100234
willy tarreau4373b962005-12-18 01:32:31 +0100235
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100236#### Old-style REGEX library settings for compatibility with previous setups.
237# It is still possible to use REGEX=<regex_lib> to select an alternative regex
238# library. By default, we use libc's regex. On Solaris 8/Sparc, grouping seems
239# to be broken using libc, so consider using pcre instead. Supported values are
240# "libc", "pcre", and "static-pcre". Use of this method is deprecated in favor
241# of "USE_PCRE" and "USE_STATIC_PCRE" (see build options below).
242REGEX = libc
willy tarreau9da061b2005-12-17 12:29:56 +0100243
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100244ifeq ($(REGEX),pcre)
245USE_PCRE = 1
246$(warning WARNING! use of "REGEX=pcre" is deprecated, consider using "USE_PCRE=1" instead.)
247endif
willy tarreau0174f312005-12-18 01:02:42 +0100248
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100249ifeq ($(REGEX),static-pcre)
250USE_STATIC_PCRE = 1
251$(warning WARNING! use of "REGEX=pcre-static" is deprecated, consider using "USE_STATIC_PCRE=1" instead.)
252endif
willy tarreau1c2ad212005-12-18 01:11:29 +0100253
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100254#### Old-style TPROXY settings
255ifneq ($(findstring -DTPROXY,$(DEFINE)),)
256USE_TPROXY = 1
257$(warning WARNING! use of "DEFINE=-DTPROXY" is deprecated, consider using "USE_TPROXY=1" instead.)
258endif
259
260
261#### Determine version, sub-version and release date.
262# If GIT is found, and IGNOREGIT is not set, VERSION, SUBVERS and VERDATE are
263# extracted from the last commit. Otherwise, use the contents of the files
264# holding the same names in the current directory.
willy tarreau0174f312005-12-18 01:02:42 +0100265
Willy Tarreau6620dbb2007-01-02 00:44:53 +0100266ifeq ($(IGNOREGIT),)
Willy Tarreau63076b32009-07-23 13:43:33 +0200267VERSION := $(shell [ -d .git/. ] && ref=`(git describe --tags) 2>/dev/null` && ref=$${ref%-g*} && echo "$${ref\#v}")
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100268ifneq ($(VERSION),)
269# OK git is there and works.
Willy Tarreau446024e2009-07-14 13:24:16 +0200270SUBVERS := $(shell comms=`git log --no-merges v$(VERSION).. 2>/dev/null |grep -c ^commit `; [ $$comms -gt 0 ] && echo "-$$comms" )
271VERDATE := $(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 +0200272endif
273endif
274
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100275# Last commit version not found, take it from the files.
Willy Tarreauec692562007-09-09 23:31:11 +0200276ifeq ($(VERSION),)
277VERSION := $(shell cat VERSION 2>/dev/null || touch VERSION)
278endif
279ifeq ($(SUBVERS),)
280SUBVERS := $(shell cat SUBVERS 2>/dev/null || touch SUBVERS)
281endif
282ifeq ($(VERDATE),)
283VERDATE := $(shell cat VERDATE 2>/dev/null || touch VERDATE)
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100284endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100285
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100286#### Build options
287# Do not change these ones, enable USE_* variables instead.
288OPTIONS_CFLAGS =
289OPTIONS_LDFLAGS =
290OPTIONS_OBJS =
Willy Tarreau77074d52006-11-12 23:57:19 +0100291
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100292# This variable collects all USE_* values except those set to "implicit". This
293# is used to report a list of all flags which were used to build this version.
294# Do not assign anything to it.
295BUILD_OPTIONS =
296
297# Return USE_xxx=$(USE_xxx) unless $(USE_xxx) = "implicit"
298# Usage:
299# BUILD_OPTIONS += $(call ignore_implicit,USE_xxx)
300ignore_implicit = $(patsubst %=implicit,,$(1)=$($(1)))
Willy Tarreau77074d52006-11-12 23:57:19 +0100301
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100302ifneq ($(USE_TCPSPLICE),)
Willy Tarreaub55932d2009-08-16 13:20:32 +0200303$(error experimental option USE_TCPSPLICE has been removed, check USE_LINUX_SPLICE)
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100304endif
305
Willy Tarreau88e458a2009-01-25 16:13:42 +0100306ifneq ($(USE_LINUX_SPLICE),)
307OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_SPLICE
308BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_SPLICE)
309endif
310
Willy Tarreau77074d52006-11-12 23:57:19 +0100311ifneq ($(USE_CTTPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100312OPTIONS_CFLAGS += -DCONFIG_HAP_CTTPROXY
313OPTIONS_OBJS += src/cttproxy.o
314BUILD_OPTIONS += $(call ignore_implicit,USE_CTTPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100315endif
316
317ifneq ($(USE_TPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100318OPTIONS_CFLAGS += -DTPROXY
319BUILD_OPTIONS += $(call ignore_implicit,USE_TPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100320endif
321
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100322ifneq ($(USE_LINUX_TPROXY),)
323OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_TPROXY
324BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_TPROXY)
325endif
326
Willy Tarreau77074d52006-11-12 23:57:19 +0100327ifneq ($(USE_POLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100328OPTIONS_CFLAGS += -DENABLE_POLL
329OPTIONS_OBJS += src/ev_poll.o
330BUILD_OPTIONS += $(call ignore_implicit,USE_POLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100331endif
332
333ifneq ($(USE_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100334OPTIONS_CFLAGS += -DENABLE_EPOLL
335OPTIONS_OBJS += src/ev_epoll.o
336BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100337endif
338
Willy Tarreaude99e992007-04-16 00:53:59 +0200339ifneq ($(USE_SEPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100340OPTIONS_CFLAGS += -DENABLE_SEPOLL
341OPTIONS_OBJS += src/ev_sepoll.o
342BUILD_OPTIONS += $(call ignore_implicit,USE_SEPOLL)
Willy Tarreaude99e992007-04-16 00:53:59 +0200343endif
344
Willy Tarreau77074d52006-11-12 23:57:19 +0100345ifneq ($(USE_MY_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100346OPTIONS_CFLAGS += -DUSE_MY_EPOLL
347BUILD_OPTIONS += $(call ignore_implicit,USE_MY_EPOLL)
348endif
349
350ifneq ($(USE_KQUEUE),)
351OPTIONS_CFLAGS += -DENABLE_KQUEUE
352OPTIONS_OBJS += src/ev_kqueue.o
353BUILD_OPTIONS += $(call ignore_implicit,USE_KQUEUE)
Willy Tarreau77074d52006-11-12 23:57:19 +0100354endif
355
356ifneq ($(USE_NETFILTER),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100357OPTIONS_CFLAGS += -DNETFILTER
358BUILD_OPTIONS += $(call ignore_implicit,USE_NETFILTER)
Willy Tarreau77074d52006-11-12 23:57:19 +0100359endif
360
Willy Tarreau77074d52006-11-12 23:57:19 +0100361ifneq ($(USE_GETSOCKNAME),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100362OPTIONS_CFLAGS += -DUSE_GETSOCKNAME
363BUILD_OPTIONS += $(call ignore_implicit,USE_GETSOCKNAME)
Willy Tarreau77074d52006-11-12 23:57:19 +0100364endif
365
366ifneq ($(USE_REGPARM),)
Willy Tarreaucc05fba2009-10-27 21:40:18 +0100367OPTIONS_CFLAGS += -DCONFIG_REGPARM=3
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100368BUILD_OPTIONS += $(call ignore_implicit,USE_REGPARM)
Willy Tarreau77074d52006-11-12 23:57:19 +0100369endif
370
Willy Tarreauf32d19a2008-03-07 10:02:14 +0100371# report DLMALLOC_SRC only if explicitly specified
372ifneq ($(DLMALLOC_SRC),)
373BUILD_OPTIONS += DLMALLOC_SRC=$(DLMALLOC_SRC)
374endif
375
Willy Tarreauf14358b2008-02-19 10:53:32 +0100376ifneq ($(USE_DLMALLOC),)
377BUILD_OPTIONS += $(call ignore_implicit,USE_DLMALLOC)
378ifeq ($(DLMALLOC_SRC),)
379DLMALLOC_SRC=src/dlmalloc.c
380endif
381endif
382
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200383ifneq ($(DLMALLOC_SRC),)
Willy Tarreauf32d19a2008-03-07 10:02:14 +0100384# DLMALLOC_THRES may be changed to match PAGE_SIZE on every platform
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100385DLMALLOC_THRES = 4096
386OPTIONS_OBJS += src/dlmalloc.o
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200387endif
388
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100389ifneq ($(USE_PCRE),)
390# PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is
391# automatically detected but can be forced if required.
392ifeq ($(PCREDIR),)
393PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local)
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100394endif
Christian Wiesec8203002008-11-20 14:47:04 +0100395ifeq ($(USE_STATIC_PCRE),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100396OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include
397OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -lpcreposix -lpcre
Christian Wiesec8203002008-11-20 14:47:04 +0100398endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100399BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE)
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100400endif
401
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100402ifneq ($(USE_STATIC_PCRE),)
403# PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is
404# automatically detected but can be forced if required.
405ifeq ($(PCREDIR),)
406PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local)
407endif
408OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include
409OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -Wl,-Bstatic -lpcreposix -lpcre -Wl,-Bdynamic
410BUILD_OPTIONS += $(call ignore_implicit,USE_STATIC_PCRE)
411endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100412
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100413# This one can be changed to look for ebtree files in an external directory
414EBTREE_DIR := ebtree
Willy Tarreau77074d52006-11-12 23:57:19 +0100415
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100416#### Global compile options
417VERBOSE_CFLAGS = $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE)
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100418COPTS = -Iinclude -I$(EBTREE_DIR) -Wall
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100419COPTS += $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) $(SILENT_DEFINE)
420COPTS += $(DEBUG) $(OPTIONS_CFLAGS) $(ADDINC)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100421
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100422ifneq ($(VERSION)$(SUBVERS),)
423COPTS += -DCONFIG_HAPROXY_VERSION=\"$(VERSION)$(SUBVERS)\"
424endif
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100425
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100426ifneq ($(VERDATE),)
427COPTS += -DCONFIG_HAPROXY_DATE=\"$(VERDATE)\"
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100428endif
429
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100430#### Global link options
431# These options are added at the end of the "ld" command line. Use LDFLAGS to
432# add options at the beginning of the "ld" command line if needed.
433LDOPTS = $(TARGET_LDFLAGS) $(OPTIONS_LDFLAGS) $(ADDLIB)
willy tarreau0f7af912005-12-17 12:21:26 +0100434
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100435ifeq ($(TARGET),)
436all:
437 @echo
438 @echo "Due to too many reports of suboptimized setups, building without"
439 @echo "specifying the target is no longer supported. Please specify the"
440 @echo "target OS in the TARGET variable, in the following form:"
441 @echo
442 @echo " $ make TARGET=xxx"
443 @echo
444 @echo "Please choose the target among the following supported list :"
445 @echo
Willy Tarreaub1814652009-03-29 15:08:25 +0200446 @echo " linux26, linux24, linux24e, linux22, solaris"
Yitzhak Sapir32087312009-06-14 18:27:54 +0200447 @echo " freebsd, openbsd, cygwin, custom, generic"
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100448 @echo
449 @echo "Use \"generic\" if you don't want any optimization, \"custom\" if you"
450 @echo "want to precisely tweak every option, or choose the target which"
451 @echo "matches your OS the most in order to gain the maximum performance"
452 @echo "out of it. Please check the Makefile in case of doubts."
453 @echo
454 @exit 1
455else
willy tarreau0f7af912005-12-17 12:21:26 +0100456all: haproxy
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100457endif
willy tarreau0f7af912005-12-17 12:21:26 +0100458
Willy Tarreaudd815982007-10-16 12:25:14 +0200459OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \
Willy Tarreaubaaee002006-06-26 02:48:02 +0200460 src/uri_auth.o src/standard.o src/buffers.o src/log.o src/task.o \
Willy Tarreau982b6e32009-01-25 13:49:53 +0100461 src/time.o src/fd.o src/pipe.o src/regex.o src/cfgparse.o src/server.o \
Emeric Brun3bd697e2010-01-04 15:23:48 +0100462 src/checks.o src/queue.o src/client.o src/proxy.o src/stick_table.o src/proto_uxst.o \
Willy Tarreaubaaee002006-06-26 02:48:02 +0200463 src/proto_http.o src/stream_sock.o src/appsession.o src/backend.o \
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200464 src/lb_chash.o src/lb_fwlc.o src/lb_fwrr.o src/lb_map.o \
Willy Tarreaudded32d2008-11-30 19:48:07 +0100465 src/stream_interface.o src/dumpstats.o src/proto_tcp.o \
Willy Tarreaubc5258d2009-05-10 09:00:20 +0200466 src/session.o src/hdr_idx.o src/ev_select.o src/signal.o \
Emeric Brun107ca302010-01-04 16:16:05 +0100467 src/acl.o src/pattern.o src/memory.o src/freq_ctr.o
Willy Tarreaubaaee002006-06-26 02:48:02 +0200468
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100469EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o \
470 $(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \
471 $(EBTREE_DIR)/ebmbtree.o $(EBTREE_DIR)/ebsttree.o \
472 $(EBTREE_DIR)/ebimtree.o $(EBTREE_DIR)/ebistree.o
473
474# Not used right now
475LIB_EBTREE = $(EBTREE_DIR)/libebtree.a
476
477haproxy: $(OBJS) $(OPTIONS_OBJS) $(EBTREE_OBJS)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100478 $(LD) $(LDFLAGS) -o $@ $^ $(LDOPTS)
willy tarreau0f7af912005-12-17 12:21:26 +0100479
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100480$(LIB_EBTREE): $(EBTREE_OBJS)
481 $(AR) rv $@ $^
482
Willy Tarreaubaaee002006-06-26 02:48:02 +0200483objsize: haproxy
484 @objdump -t $^|grep ' g '|grep -F '.text'|awk '{print $$5 FS $$6}'|sort
485
willy tarreau0f7af912005-12-17 12:21:26 +0100486%.o: %.c
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100487 $(CC) $(COPTS) -c -o $@ $<
willy tarreau0f7af912005-12-17 12:21:26 +0100488
Willy Tarreau7b066db2007-12-02 11:28:59 +0100489src/haproxy.o: src/haproxy.c
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100490 $(CC) $(COPTS) \
491 -DBUILD_TARGET='"$(strip $(TARGET))"' \
Willy Tarreauef7341d2009-04-11 19:45:50 +0200492 -DBUILD_ARCH='"$(strip $(ARCH))"' \
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100493 -DBUILD_CPU='"$(strip $(CPU))"' \
494 -DBUILD_CC='"$(strip $(CC))"' \
495 -DBUILD_CFLAGS='"$(strip $(VERBOSE_CFLAGS))"' \
496 -DBUILD_OPTIONS='"$(strip $(BUILD_OPTIONS))"' \
497 -c -o $@ $<
Willy Tarreau7b066db2007-12-02 11:28:59 +0100498
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200499src/dlmalloc.o: $(DLMALLOC_SRC)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100500 $(CC) $(COPTS) -DDEFAULT_MMAP_THRESHOLD=$(DLMALLOC_THRES) -c -o $@ $<
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200501
Christian Wiese19b50292008-03-12 15:57:54 +0200502install-man:
Christian Wiesece8f3422008-03-12 18:19:16 +0200503 install -d $(DESTDIR)$(MANDIR)/man1
504 install -m 644 doc/haproxy.1 $(DESTDIR)$(MANDIR)/man1
Christian Wiese19b50292008-03-12 15:57:54 +0200505
Christian Wiesebf34eb42008-03-12 17:24:49 +0200506install-doc:
Christian Wiesece8f3422008-03-12 18:19:16 +0200507 install -d $(DESTDIR)$(DOCDIR)
Christian Wiesebf34eb42008-03-12 17:24:49 +0200508 for x in configuration architecture haproxy-en haproxy-fr; do \
Christian Wiesece8f3422008-03-12 18:19:16 +0200509 install -m 644 doc/$$x.txt $(DESTDIR)$(DOCDIR) ; \
Christian Wiesebf34eb42008-03-12 17:24:49 +0200510 done
511
Willy Tarreaue9bc01e2008-06-12 00:25:46 +0200512install-bin: haproxy
Christian Wiesece8f3422008-03-12 18:19:16 +0200513 install -d $(DESTDIR)$(SBINDIR)
514 install haproxy $(DESTDIR)$(SBINDIR)
Christian Wiesea184aa22008-03-12 15:25:35 +0200515
Christian Wiesedb5238d2008-03-12 18:28:13 +0200516install: install-bin install-man install-doc
Christian Wiese4cf5d572008-03-12 16:21:05 +0200517
willy tarreau0f7af912005-12-17 12:21:26 +0100518clean:
Willy Tarreau45cb4fb2009-10-26 21:10:04 +0100519 rm -f *.[oas] src/*.[oas] ebtree/*.[oas] haproxy test
520 for dir in . src include/* doc ebtree; do rm -f $$dir/*~ $$dir/*.rej $$dir/core; done
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100521 rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)$(SUBVERS).tar.gz
522 rm -f haproxy-$(VERSION) nohup.out gmon.out
willy tarreauefae1842005-12-17 12:51:03 +0100523
Willy Tarreauebe0af42009-10-10 22:20:44 +0200524tags:
525 find src include -name '*.c' -o -name '*.h' -print0 | \
526 xargs -0 etags --declarations --members
527
willy tarreaue114bf92006-03-19 21:30:14 +0100528tar: clean
willy tarreaucee272f2006-03-19 21:16:26 +0100529 ln -s . haproxy-$(VERSION)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200530 tar --exclude=haproxy-$(VERSION)/.git \
531 --exclude=haproxy-$(VERSION)/haproxy-$(VERSION) \
532 --exclude=haproxy-$(VERSION)/haproxy-$(VERSION).tar.gz \
533 -cf - haproxy-$(VERSION)/* | gzip -c9 >haproxy-$(VERSION).tar.gz
willy tarreaucee272f2006-03-19 21:16:26 +0100534 rm -f haproxy-$(VERSION)
535
Willy Tarreau9f0a9012006-10-15 14:24:14 +0200536git-tar: clean
Willy Tarreau63076b32009-07-23 13:43:33 +0200537 git archive --format=tar --prefix="haproxy-$(VERSION)/" HEAD | gzip -9 > haproxy-$(VERSION)$(SUBVERS).tar.gz
Willy Tarreauec692562007-09-09 23:31:11 +0200538
539version:
540 @echo "VERSION: $(VERSION)"
541 @echo "SUBVERS: $(SUBVERS)"
542 @echo "VERDATE: $(VERDATE)"
543
544# never use this one if you don't know what it is used for.
545update-version:
546 @echo "Ready to update the following versions :"
547 @echo "VERSION: $(VERSION)"
548 @echo "SUBVERS: $(SUBVERS)"
549 @echo "VERDATE: $(VERDATE)"
550 @echo "Press [ENTER] to continue or Ctrl-C to abort now.";read
551 echo "$(VERSION)" > VERSION
552 echo "$(SUBVERS)" > SUBVERS
553 echo "$(VERDATE)" > VERDATE