blob: f74f8f85be7268bfd069239bc4906a761c4fc2fa [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 Tarreau9f2b7302008-01-02 20:48:34 +01004# [g]make TARGET=os 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.
11# USE_EPOLL_WORKAROUND : enable epoll() bug workaround. Automatic.
12# USE_GETSOCKNAME : enable getsockname() on Linux 2.2. Automatic.
13# USE_KQUEUE : enable kqueue() on BSD. Automatic.
14# USE_MY_EPOLL : redefine epoll_* syscalls. Automatic.
15# USE_NETFILTER : enable netfilter on Linux. Automatic.
16# USE_PCRE : enable use of libpcre for regex. Recommended.
17# USE_POLL : enable poll(). Automatic.
18# USE_REGPARM : enable regparm optimization. Recommended on x86.
19# USE_SEPOLL : enable speculative epoll(). Automatic.
20# USE_STATIC_PCRE : enable static libpcre. Recommended.
21# USE_TCPSPLICE : enable tcp_splice() on Linux (needs kernel patch).
22# USE_TPROXY : enable transparent proxy. Automatic.
Willy Tarreaub1e52e82008-01-13 14:49:51 +010023# USE_LINUX_TPROXY : enable full transparent proxy (need kernel patch).
Willy Tarreauf2ef8c52007-07-11 09:19:31 +020024#
Willy Tarreau9f2b7302008-01-02 20:48:34 +010025# Options can be forced by specifying "USE_xxx=1" or can be disabled by using
26# "USE_xxx=" (empty string).
27#
28# Variables useful for packagers :
29# CC is set to "gcc" by default and is used for compilation only.
30# LD is set to "gcc" by default and is used for linking only.
31# 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.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010047#
48# Other variables :
49# DLMALLOC_SRC : build with dlmalloc, indicate the location of dlmalloc.c.
50# DLMALLOC_THRES : should match PAGE_SIZE on every platform (default: 4096).
51# PCREDIR : force the path to libpcre.
52# IGNOREGIT : ignore GIT commit versions if set.
53# VERSION : force haproxy version reporting.
54# SUBVERS : add a sub-version (eg: platform, model, ...).
55# VERDATE : force haproxy's release date.
Willy Tarreau4f60f162007-04-08 16:39:58 +020056
Christian Wiesea184aa22008-03-12 15:25:35 +020057#### Installation options.
58DESTDIR =
59PREFIX = /usr/local
60SBINDIR = $(PREFIX)/sbin
Willy Tarreau4f60f162007-04-08 16:39:58 +020061
Willy Tarreau9f2b7302008-01-02 20:48:34 +010062#### TARGET system
63# Use TARGET=<target_name> to optimize for a specifc target OS among the
64# following list (use the default "generic" if uncertain) :
65# generic, linux22, linux24, linux24e, linux24eold, linux26, solaris,
66# freebsd, openbsd, custom
Willy Tarreaue4208cb2008-03-11 06:37:39 +010067TARGET =
Willy Tarreau4f60f162007-04-08 16:39:58 +020068
Willy Tarreau9f2b7302008-01-02 20:48:34 +010069#### TARGET CPU
70# Use CPU=<cpu_name> to optimize for a particular CPU, among the following
71# list :
72# generic, i586, i686, ultrasparc, custom
willy tarreaueedaa9f2005-12-17 14:08:03 +010073CPU = generic
willy tarreau036e1ce2005-12-17 13:46:33 +010074
Willy Tarreau9f2b7302008-01-02 20:48:34 +010075#### Toolchain options.
76# GCC is normally used both for compiling and linking.
willy tarreaueedaa9f2005-12-17 14:08:03 +010077CC = gcc
78LD = gcc
79
Willy Tarreau9f2b7302008-01-02 20:48:34 +010080#### Debug flags (typically "-g").
81# Those flags only feed CFLAGS so it is not mandatory to use this form.
82DEBUG_CFLAGS = -g
willy tarreau036e1ce2005-12-17 13:46:33 +010083
Willy Tarreau9f2b7302008-01-02 20:48:34 +010084#### Memory usage tuning
85# If small memory footprint is required, you can reduce the buffer size. There
86# are 2 buffers per concurrent session, so 16 kB buffers will eat 32 MB memory
87# with 1000 concurrent sessions. Putting it slightly lower than a page size
88# will prevent the additional parameters to go beyond a page. 8030 bytes is
89# exactly 5.5 TCP segments of 1460 bytes and is generally good. Useful tuning
90# macros include :
91# SYSTEM_MAXCONN, BUFSIZE, MAXREWRITE, REQURI_LEN, CAPTURE_LEN.
92# Example: SMALL_OPTS = -DBUFSIZE=8030 -DMAXREWRITE=1030 -DSYSTEM_MAXCONN=1024
93SMALL_OPTS =
Willy Tarreau6d1a9882007-01-07 02:03:04 +010094
Willy Tarreau9f2b7302008-01-02 20:48:34 +010095#### Debug settings
96# You can enable debugging on specific code parts by setting DEBUG=-DDEBUG_xxx.
97# Currently defined DEBUG macros include DEBUG_FULL, DEBUG_MEMORY, DEBUG_FSM,
98# DEBUG_HASH and DEBUG_PARSE_NO_SPEEDUP. Please consult sources for exact
99# meaning or do not use at all.
100DEBUG =
willy tarreau1c2ad212005-12-18 01:11:29 +0100101
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100102#### Additional include and library dirs
103# Redefine this if you want to add some special PATH to include/libs
104ADDINC =
105ADDLIB =
willy tarreau64a3cc32005-12-18 01:13:11 +0100106
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100107#### Specific macro definitions
108# Use DEFINE=-Dxxx to set any tunable macro. Anything declared here will appear
109# in the build options reported by "haproxy -vv". Use SILENT_DEFINE if you do
110# not want to pollute the report with complex defines.
111DEFINE =
112SILENT_DEFINE =
willy tarreau0f7af912005-12-17 12:21:26 +0100113
willy tarreau5cbea6f2005-12-17 12:48:26 +0100114
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100115#### CPU dependant optimizations
116# Some CFLAGS are set by default depending on the target CPU. Those flags only
117# feed CPU_CFLAGS, which in turn feed CFLAGS, so it is not mandatory to use
118# them. You should not have to change these options. Better use CPU_CFLAGS or
119# even CFLAGS instead.
120CPU_CFLAGS.generic = -O2
121CPU_CFLAGS.i586 = -O2 -march=i586
122CPU_CFLAGS.i686 = -O2 -march=i686
123CPU_CFLAGS.ultrasparc = -O6 -mcpu=v9 -mtune=ultrasparc
124CPU_CFLAGS = $(CPU_CFLAGS.$(CPU))
willy tarreau9da061b2005-12-17 12:29:56 +0100125
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100126#### Common CFLAGS
127# These CFLAGS contain general optimization options, CPU-specific optimizations
128# and debug flags. They may be overridden by some distributions which prefer to
129# set all of them at once instead of playing with the CPU and DEBUG variables.
130CFLAGS = $(CPU_CFLAGS) $(DEBUG_CFLAGS)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100131
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100132#### Common LDFLAGS
133# These LDFLAGS are used as the first "ld" options, regardless of any library
134# path or any other option. They may be changed to add any linker-specific
135# option at the beginning of the ld command line.
136LDFLAGS = -g
willy tarreau036e1ce2005-12-17 13:46:33 +0100137
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100138#### Target system options
139# Depending on the target platform, some options are set, as well as some
140# CFLAGS and LDFLAGS. The USE_* values are set to "implicit" so that they are
141# not reported in the build options string. You should not have to change
142# anything there.
143ifeq ($(TARGET),generic)
144 # generic system target has nothing specific
145 USE_POLL = implicit
146 USE_TPROXY = implicit
147else
148ifeq ($(TARGET),linux22)
149 # This is for Linux 2.2
150 USE_GETSOCKNAME = implicit
151 USE_POLL = implicit
152 USE_TPROXY = implicit
153else
154ifeq ($(TARGET),linux24)
155 # This is for standard Linux 2.4 with netfilter but without epoll()
156 USE_GETSOCKNAME = implicit
157 USE_NETFILTER = implicit
158 USE_POLL = implicit
159 USE_TPROXY = implicit
160else
161ifeq ($(TARGET),linux24e)
162 # This is for enhanced Linux 2.4 with netfilter and epoll() patch > 0.21
163 USE_GETSOCKNAME = implicit
164 USE_NETFILTER = implicit
165 USE_POLL = implicit
166 USE_EPOLL = implicit
167 USE_SEPOLL = implicit
168 USE_MY_EPOLL = implicit
169 USE_TPROXY = implicit
170else
171ifeq ($(TARGET),linux24eold)
172 # This is for enhanced Linux 2.4 with netfilter and epoll() patch <= 0.21,
173 # which needs a workaround for a very rare bug.
174 USE_GETSOCKNAME = implicit
175 USE_NETFILTER = implicit
176 USE_POLL = implicit
177 USE_EPOLL = implicit
178 USE_SEPOLL = implicit
179 USE_MY_EPOLL = implicit
180 USE_EPOLL_WORKAROUND = implicit
181 USE_TPROXY = implicit
182else
183ifeq ($(TARGET),linux26)
184 # This is for standard Linux 2.6 with netfilter and standard epoll()
185 USE_GETSOCKNAME = implicit
186 USE_NETFILTER = implicit
187 USE_POLL = implicit
188 USE_EPOLL = implicit
189 USE_SEPOLL = implicit
190 USE_TPROXY = implicit
191else
192ifeq ($(TARGET),solaris)
193 # This is for Solaris 8
194 USE_POLL = implicit
195 TARGET_CFLAGS = -fomit-frame-pointer -DFD_SETSIZE=65536 -D_REENTRANT
196 TARGET_LDFLAGS = -lnsl -lsocket
197 USE_TPROXY = implicit
198else
199ifeq ($(TARGET),freebsd)
200 # This is for FreeBSD
201 USE_POLL = implicit
202 USE_KQUEUE = implicit
203 USE_TPROXY = implicit
204else
205ifeq ($(TARGET),openbsd)
206 # This is for OpenBSD >= 3.0
207 USE_POLL = implicit
208 USE_KQUEUE = implicit
209 USE_TPROXY = implicit
210endif # openbsd
211endif # freebsd
212endif # solaris
213endif # linux26
214endif # linux24eold
215endif # linux24e
216endif # linux24
217endif # linux22
218endif # generic
willy tarreau036e1ce2005-12-17 13:46:33 +0100219
willy tarreau4373b962005-12-18 01:32:31 +0100220
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100221#### Old-style REGEX library settings for compatibility with previous setups.
222# It is still possible to use REGEX=<regex_lib> to select an alternative regex
223# library. By default, we use libc's regex. On Solaris 8/Sparc, grouping seems
224# to be broken using libc, so consider using pcre instead. Supported values are
225# "libc", "pcre", and "static-pcre". Use of this method is deprecated in favor
226# of "USE_PCRE" and "USE_STATIC_PCRE" (see build options below).
227REGEX = libc
willy tarreau9da061b2005-12-17 12:29:56 +0100228
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100229ifeq ($(REGEX),pcre)
230USE_PCRE = 1
231$(warning WARNING! use of "REGEX=pcre" is deprecated, consider using "USE_PCRE=1" instead.)
232endif
willy tarreau0174f312005-12-18 01:02:42 +0100233
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100234ifeq ($(REGEX),static-pcre)
235USE_STATIC_PCRE = 1
236$(warning WARNING! use of "REGEX=pcre-static" is deprecated, consider using "USE_STATIC_PCRE=1" instead.)
237endif
willy tarreau1c2ad212005-12-18 01:11:29 +0100238
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100239#### Old-style TPROXY settings
240ifneq ($(findstring -DTPROXY,$(DEFINE)),)
241USE_TPROXY = 1
242$(warning WARNING! use of "DEFINE=-DTPROXY" is deprecated, consider using "USE_TPROXY=1" instead.)
243endif
244
245
246#### Determine version, sub-version and release date.
247# If GIT is found, and IGNOREGIT is not set, VERSION, SUBVERS and VERDATE are
248# extracted from the last commit. Otherwise, use the contents of the files
249# holding the same names in the current directory.
willy tarreau0174f312005-12-18 01:02:42 +0100250
Willy Tarreau6620dbb2007-01-02 00:44:53 +0100251ifeq ($(IGNOREGIT),)
Willy Tarreauec692562007-09-09 23:31:11 +0200252VERSION := $(shell [ -d .git/. ] && ref=`(git-describe --tags) 2>/dev/null` && ref=$${ref%-g*} && echo "$${ref\#v}")
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100253ifneq ($(VERSION),)
254# OK git is there and works.
Willy Tarreaua1973c42007-04-09 22:07:11 +0200255SUBVERS := $(shell comms=`git-log --no-merges v$(VERSION).. 2>/dev/null |grep -c ^commit `; [ $$comms -gt 0 ] && echo "-$$comms" )
256VERDATE := $(shell date +%Y/%m/%d -d "`git-log HEAD^.. 2>/dev/null | grep -m 1 ^Date: | cut -f2- -d: | cut -f1 -d+`" )
Willy Tarreauec692562007-09-09 23:31:11 +0200257endif
258endif
259
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100260# Last commit version not found, take it from the files.
Willy Tarreauec692562007-09-09 23:31:11 +0200261ifeq ($(VERSION),)
262VERSION := $(shell cat VERSION 2>/dev/null || touch VERSION)
263endif
264ifeq ($(SUBVERS),)
265SUBVERS := $(shell cat SUBVERS 2>/dev/null || touch SUBVERS)
266endif
267ifeq ($(VERDATE),)
268VERDATE := $(shell cat VERDATE 2>/dev/null || touch VERDATE)
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100269endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100270
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100271#### Build options
272# Do not change these ones, enable USE_* variables instead.
273OPTIONS_CFLAGS =
274OPTIONS_LDFLAGS =
275OPTIONS_OBJS =
Willy Tarreau77074d52006-11-12 23:57:19 +0100276
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100277# This variable collects all USE_* values except those set to "implicit". This
278# is used to report a list of all flags which were used to build this version.
279# Do not assign anything to it.
280BUILD_OPTIONS =
281
282# Return USE_xxx=$(USE_xxx) unless $(USE_xxx) = "implicit"
283# Usage:
284# BUILD_OPTIONS += $(call ignore_implicit,USE_xxx)
285ignore_implicit = $(patsubst %=implicit,,$(1)=$($(1)))
Willy Tarreau77074d52006-11-12 23:57:19 +0100286
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100287ifneq ($(USE_TCPSPLICE),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100288# This is the directory hosting libtcpsplice.[ah]
289TCPSPLICEDIR :=
290OPTIONS_CFLAGS += -DCONFIG_HAP_TCPSPLICE -I$(TCPSPLICEDIR)
291OPTIONS_LDFLAGS += -L$(TCPSPLICEDIR) -ltcpsplice
292BUILD_OPTIONS += $(call ignore_implicit,USE_TCPSPLICE)
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100293endif
294
Willy Tarreau77074d52006-11-12 23:57:19 +0100295ifneq ($(USE_CTTPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100296OPTIONS_CFLAGS += -DCONFIG_HAP_CTTPROXY
297OPTIONS_OBJS += src/cttproxy.o
298BUILD_OPTIONS += $(call ignore_implicit,USE_CTTPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100299endif
300
301ifneq ($(USE_TPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100302OPTIONS_CFLAGS += -DTPROXY
303BUILD_OPTIONS += $(call ignore_implicit,USE_TPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100304endif
305
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100306ifneq ($(USE_LINUX_TPROXY),)
307OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_TPROXY
308BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_TPROXY)
309endif
310
Willy Tarreau77074d52006-11-12 23:57:19 +0100311ifneq ($(USE_POLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100312OPTIONS_CFLAGS += -DENABLE_POLL
313OPTIONS_OBJS += src/ev_poll.o
314BUILD_OPTIONS += $(call ignore_implicit,USE_POLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100315endif
316
317ifneq ($(USE_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100318OPTIONS_CFLAGS += -DENABLE_EPOLL
319OPTIONS_OBJS += src/ev_epoll.o
320BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100321endif
322
Willy Tarreaude99e992007-04-16 00:53:59 +0200323ifneq ($(USE_SEPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100324OPTIONS_CFLAGS += -DENABLE_SEPOLL
325OPTIONS_OBJS += src/ev_sepoll.o
326BUILD_OPTIONS += $(call ignore_implicit,USE_SEPOLL)
Willy Tarreaude99e992007-04-16 00:53:59 +0200327endif
328
Willy Tarreau77074d52006-11-12 23:57:19 +0100329ifneq ($(USE_MY_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100330OPTIONS_CFLAGS += -DUSE_MY_EPOLL
331BUILD_OPTIONS += $(call ignore_implicit,USE_MY_EPOLL)
332endif
333
334ifneq ($(USE_KQUEUE),)
335OPTIONS_CFLAGS += -DENABLE_KQUEUE
336OPTIONS_OBJS += src/ev_kqueue.o
337BUILD_OPTIONS += $(call ignore_implicit,USE_KQUEUE)
Willy Tarreau77074d52006-11-12 23:57:19 +0100338endif
339
340ifneq ($(USE_NETFILTER),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100341OPTIONS_CFLAGS += -DNETFILTER
342BUILD_OPTIONS += $(call ignore_implicit,USE_NETFILTER)
Willy Tarreau77074d52006-11-12 23:57:19 +0100343endif
344
345ifneq ($(USE_EPOLL_WORKAROUND),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100346OPTIONS_CFLAGS += -DEPOLL_CTL_MOD_WORKAROUND
347BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL_WORKAROUND)
Willy Tarreau77074d52006-11-12 23:57:19 +0100348endif
349
350ifneq ($(USE_GETSOCKNAME),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100351OPTIONS_CFLAGS += -DUSE_GETSOCKNAME
352BUILD_OPTIONS += $(call ignore_implicit,USE_GETSOCKNAME)
Willy Tarreau77074d52006-11-12 23:57:19 +0100353endif
354
355ifneq ($(USE_REGPARM),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100356OPTIONS_CFLAGS += -DCONFIG_HAP_USE_REGPARM
357BUILD_OPTIONS += $(call ignore_implicit,USE_REGPARM)
Willy Tarreau77074d52006-11-12 23:57:19 +0100358endif
359
Willy Tarreauf32d19a2008-03-07 10:02:14 +0100360# report DLMALLOC_SRC only if explicitly specified
361ifneq ($(DLMALLOC_SRC),)
362BUILD_OPTIONS += DLMALLOC_SRC=$(DLMALLOC_SRC)
363endif
364
Willy Tarreauf14358b2008-02-19 10:53:32 +0100365ifneq ($(USE_DLMALLOC),)
366BUILD_OPTIONS += $(call ignore_implicit,USE_DLMALLOC)
367ifeq ($(DLMALLOC_SRC),)
368DLMALLOC_SRC=src/dlmalloc.c
369endif
370endif
371
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200372ifneq ($(DLMALLOC_SRC),)
Willy Tarreauf32d19a2008-03-07 10:02:14 +0100373# DLMALLOC_THRES may be changed to match PAGE_SIZE on every platform
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100374DLMALLOC_THRES = 4096
375OPTIONS_OBJS += src/dlmalloc.o
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200376endif
377
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100378ifneq ($(USE_PCRE),)
379# PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is
380# automatically detected but can be forced if required.
381ifeq ($(PCREDIR),)
382PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local)
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100383endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100384OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include
385OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -lpcreposix -lpcre
386BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE)
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100387endif
388
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100389ifneq ($(USE_STATIC_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)
394endif
395OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include
396OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -Wl,-Bstatic -lpcreposix -lpcre -Wl,-Bdynamic
397BUILD_OPTIONS += $(call ignore_implicit,USE_STATIC_PCRE)
398endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100399
400
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100401#### Global compile options
402VERBOSE_CFLAGS = $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE)
403COPTS = -Iinclude -Wall
404COPTS += $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) $(SILENT_DEFINE)
405COPTS += $(DEBUG) $(OPTIONS_CFLAGS) $(ADDINC)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100406
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100407ifneq ($(VERSION)$(SUBVERS),)
408COPTS += -DCONFIG_HAPROXY_VERSION=\"$(VERSION)$(SUBVERS)\"
409endif
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100410
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100411ifneq ($(VERDATE),)
412COPTS += -DCONFIG_HAPROXY_DATE=\"$(VERDATE)\"
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100413endif
414
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100415#### Global link options
416# These options are added at the end of the "ld" command line. Use LDFLAGS to
417# add options at the beginning of the "ld" command line if needed.
418LDOPTS = $(TARGET_LDFLAGS) $(OPTIONS_LDFLAGS) $(ADDLIB)
willy tarreau0f7af912005-12-17 12:21:26 +0100419
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100420ifeq ($(TARGET),)
421all:
422 @echo
423 @echo "Due to too many reports of suboptimized setups, building without"
424 @echo "specifying the target is no longer supported. Please specify the"
425 @echo "target OS in the TARGET variable, in the following form:"
426 @echo
427 @echo " $ make TARGET=xxx"
428 @echo
429 @echo "Please choose the target among the following supported list :"
430 @echo
431 @echo " linux26, linux24, linux24e, linux24eold, linux22, solaris"
432 @echo " freebsd, openbsd, custom, generic"
433 @echo
434 @echo "Use \"generic\" if you don't want any optimization, \"custom\" if you"
435 @echo "want to precisely tweak every option, or choose the target which"
436 @echo "matches your OS the most in order to gain the maximum performance"
437 @echo "out of it. Please check the Makefile in case of doubts."
438 @echo
439 @exit 1
440else
willy tarreau0f7af912005-12-17 12:21:26 +0100441all: haproxy
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100442endif
willy tarreau0f7af912005-12-17 12:21:26 +0100443
Willy Tarreaudd815982007-10-16 12:25:14 +0200444OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \
Willy Tarreaubaaee002006-06-26 02:48:02 +0200445 src/uri_auth.o src/standard.o src/buffers.o src/log.o src/task.o \
446 src/time.o src/fd.o src/regex.o src/cfgparse.o src/server.o \
Willy Tarreau92fb9832007-10-16 17:34:28 +0200447 src/checks.o src/queue.o src/client.o src/proxy.o src/proto_uxst.o \
Willy Tarreaubaaee002006-06-26 02:48:02 +0200448 src/proto_http.o src/stream_sock.o src/appsession.o src/backend.o \
Willy Tarreaue6b98942007-10-29 01:09:36 +0100449 src/senddata.o src/dumpstats.o src/proto_tcp.o \
Willy Tarreaue6d2e4d2007-11-15 23:56:17 +0100450 src/session.o src/hdr_idx.o src/ev_select.o \
451 src/acl.o src/memory.o \
452 src/ebtree.o src/eb32tree.o
Willy Tarreaubaaee002006-06-26 02:48:02 +0200453
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100454haproxy: $(OBJS) $(OPTIONS_OBJS)
455 $(LD) $(LDFLAGS) -o $@ $^ $(LDOPTS)
willy tarreau0f7af912005-12-17 12:21:26 +0100456
Willy Tarreaubaaee002006-06-26 02:48:02 +0200457objsize: haproxy
458 @objdump -t $^|grep ' g '|grep -F '.text'|awk '{print $$5 FS $$6}'|sort
459
willy tarreau0f7af912005-12-17 12:21:26 +0100460%.o: %.c
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100461 $(CC) $(COPTS) -c -o $@ $<
willy tarreau0f7af912005-12-17 12:21:26 +0100462
Willy Tarreau7b066db2007-12-02 11:28:59 +0100463src/haproxy.o: src/haproxy.c
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100464 $(CC) $(COPTS) \
465 -DBUILD_TARGET='"$(strip $(TARGET))"' \
466 -DBUILD_CPU='"$(strip $(CPU))"' \
467 -DBUILD_CC='"$(strip $(CC))"' \
468 -DBUILD_CFLAGS='"$(strip $(VERBOSE_CFLAGS))"' \
469 -DBUILD_OPTIONS='"$(strip $(BUILD_OPTIONS))"' \
470 -c -o $@ $<
Willy Tarreau7b066db2007-12-02 11:28:59 +0100471
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200472src/dlmalloc.o: $(DLMALLOC_SRC)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100473 $(CC) $(COPTS) -DDEFAULT_MMAP_THRESHOLD=$(DLMALLOC_THRES) -c -o $@ $<
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200474
Christian Wiesea184aa22008-03-12 15:25:35 +0200475install: all
476 install -d $(DESTDIR)/$(SBINDIR)
477 install haproxy $(DESTDIR)/$(SBINDIR)
478
willy tarreau0f7af912005-12-17 12:21:26 +0100479clean:
Willy Tarreau1a587492006-10-15 23:40:58 +0200480 rm -f *.[oas] src/*.[oas] core haproxy test
481 for dir in . src include/* doc; do rm -f $$dir/*~ $$dir/*.rej;done
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100482 rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)$(SUBVERS).tar.gz
483 rm -f haproxy-$(VERSION) nohup.out gmon.out
willy tarreauefae1842005-12-17 12:51:03 +0100484
willy tarreaue114bf92006-03-19 21:30:14 +0100485tar: clean
willy tarreaucee272f2006-03-19 21:16:26 +0100486 ln -s . haproxy-$(VERSION)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200487 tar --exclude=haproxy-$(VERSION)/.git \
488 --exclude=haproxy-$(VERSION)/haproxy-$(VERSION) \
489 --exclude=haproxy-$(VERSION)/haproxy-$(VERSION).tar.gz \
490 -cf - haproxy-$(VERSION)/* | gzip -c9 >haproxy-$(VERSION).tar.gz
willy tarreaucee272f2006-03-19 21:16:26 +0100491 rm -f haproxy-$(VERSION)
492
Willy Tarreau9f0a9012006-10-15 14:24:14 +0200493git-tar: clean
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100494 git-tar-tree HEAD haproxy-$(VERSION) | gzip -9 > haproxy-$(VERSION)$(SUBVERS).tar.gz
Willy Tarreauec692562007-09-09 23:31:11 +0200495
496version:
497 @echo "VERSION: $(VERSION)"
498 @echo "SUBVERS: $(SUBVERS)"
499 @echo "VERDATE: $(VERDATE)"
500
501# never use this one if you don't know what it is used for.
502update-version:
503 @echo "Ready to update the following versions :"
504 @echo "VERSION: $(VERSION)"
505 @echo "SUBVERS: $(SUBVERS)"
506 @echo "VERDATE: $(VERDATE)"
507 @echo "Press [ENTER] to continue or Ctrl-C to abort now.";read
508 echo "$(VERSION)" > VERSION
509 echo "$(SUBVERS)" > SUBVERS
510 echo "$(VERDATE)" > VERDATE