blob: a9a4d4139417fc377271efe2ac9d04b1bf56ec14 [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.
Christian Wiese19b50292008-03-12 15:57:54 +020047# MANDIR is set to "$(PREFIX)/share/man" by default and is used for
48# installation only.
Willy Tarreau9f2b7302008-01-02 20:48:34 +010049#
50# Other variables :
51# DLMALLOC_SRC : build with dlmalloc, indicate the location of dlmalloc.c.
52# DLMALLOC_THRES : should match PAGE_SIZE on every platform (default: 4096).
53# PCREDIR : force the path to libpcre.
54# IGNOREGIT : ignore GIT commit versions if set.
55# VERSION : force haproxy version reporting.
56# SUBVERS : add a sub-version (eg: platform, model, ...).
57# VERDATE : force haproxy's release date.
Willy Tarreau4f60f162007-04-08 16:39:58 +020058
Christian Wiesea184aa22008-03-12 15:25:35 +020059#### Installation options.
60DESTDIR =
61PREFIX = /usr/local
62SBINDIR = $(PREFIX)/sbin
Christian Wiese19b50292008-03-12 15:57:54 +020063MANDIR = $(PREFIX)/man
Willy Tarreau4f60f162007-04-08 16:39:58 +020064
Willy Tarreau9f2b7302008-01-02 20:48:34 +010065#### TARGET system
66# Use TARGET=<target_name> to optimize for a specifc target OS among the
67# following list (use the default "generic" if uncertain) :
68# generic, linux22, linux24, linux24e, linux24eold, linux26, solaris,
69# freebsd, openbsd, custom
Willy Tarreaue4208cb2008-03-11 06:37:39 +010070TARGET =
Willy Tarreau4f60f162007-04-08 16:39:58 +020071
Willy Tarreau9f2b7302008-01-02 20:48:34 +010072#### TARGET CPU
73# Use CPU=<cpu_name> to optimize for a particular CPU, among the following
74# list :
75# generic, i586, i686, ultrasparc, custom
willy tarreaueedaa9f2005-12-17 14:08:03 +010076CPU = generic
willy tarreau036e1ce2005-12-17 13:46:33 +010077
Willy Tarreau9f2b7302008-01-02 20:48:34 +010078#### Toolchain options.
79# GCC is normally used both for compiling and linking.
willy tarreaueedaa9f2005-12-17 14:08:03 +010080CC = gcc
81LD = gcc
82
Willy Tarreau9f2b7302008-01-02 20:48:34 +010083#### Debug flags (typically "-g").
84# Those flags only feed CFLAGS so it is not mandatory to use this form.
85DEBUG_CFLAGS = -g
willy tarreau036e1ce2005-12-17 13:46:33 +010086
Willy Tarreau9f2b7302008-01-02 20:48:34 +010087#### Memory usage tuning
88# If small memory footprint is required, you can reduce the buffer size. There
89# are 2 buffers per concurrent session, so 16 kB buffers will eat 32 MB memory
90# with 1000 concurrent sessions. Putting it slightly lower than a page size
91# will prevent the additional parameters to go beyond a page. 8030 bytes is
92# exactly 5.5 TCP segments of 1460 bytes and is generally good. Useful tuning
93# macros include :
94# SYSTEM_MAXCONN, BUFSIZE, MAXREWRITE, REQURI_LEN, CAPTURE_LEN.
95# Example: SMALL_OPTS = -DBUFSIZE=8030 -DMAXREWRITE=1030 -DSYSTEM_MAXCONN=1024
96SMALL_OPTS =
Willy Tarreau6d1a9882007-01-07 02:03:04 +010097
Willy Tarreau9f2b7302008-01-02 20:48:34 +010098#### Debug settings
99# You can enable debugging on specific code parts by setting DEBUG=-DDEBUG_xxx.
100# Currently defined DEBUG macros include DEBUG_FULL, DEBUG_MEMORY, DEBUG_FSM,
101# DEBUG_HASH and DEBUG_PARSE_NO_SPEEDUP. Please consult sources for exact
102# meaning or do not use at all.
103DEBUG =
willy tarreau1c2ad212005-12-18 01:11:29 +0100104
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100105#### Additional include and library dirs
106# Redefine this if you want to add some special PATH to include/libs
107ADDINC =
108ADDLIB =
willy tarreau64a3cc32005-12-18 01:13:11 +0100109
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100110#### Specific macro definitions
111# Use DEFINE=-Dxxx to set any tunable macro. Anything declared here will appear
112# in the build options reported by "haproxy -vv". Use SILENT_DEFINE if you do
113# not want to pollute the report with complex defines.
114DEFINE =
115SILENT_DEFINE =
willy tarreau0f7af912005-12-17 12:21:26 +0100116
willy tarreau5cbea6f2005-12-17 12:48:26 +0100117
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100118#### CPU dependant optimizations
119# Some CFLAGS are set by default depending on the target CPU. Those flags only
120# feed CPU_CFLAGS, which in turn feed CFLAGS, so it is not mandatory to use
121# them. You should not have to change these options. Better use CPU_CFLAGS or
122# even CFLAGS instead.
123CPU_CFLAGS.generic = -O2
124CPU_CFLAGS.i586 = -O2 -march=i586
125CPU_CFLAGS.i686 = -O2 -march=i686
126CPU_CFLAGS.ultrasparc = -O6 -mcpu=v9 -mtune=ultrasparc
127CPU_CFLAGS = $(CPU_CFLAGS.$(CPU))
willy tarreau9da061b2005-12-17 12:29:56 +0100128
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100129#### Common CFLAGS
130# These CFLAGS contain general optimization options, CPU-specific optimizations
131# and debug flags. They may be overridden by some distributions which prefer to
132# set all of them at once instead of playing with the CPU and DEBUG variables.
133CFLAGS = $(CPU_CFLAGS) $(DEBUG_CFLAGS)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100134
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100135#### Common LDFLAGS
136# These LDFLAGS are used as the first "ld" options, regardless of any library
137# path or any other option. They may be changed to add any linker-specific
138# option at the beginning of the ld command line.
139LDFLAGS = -g
willy tarreau036e1ce2005-12-17 13:46:33 +0100140
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100141#### Target system options
142# Depending on the target platform, some options are set, as well as some
143# CFLAGS and LDFLAGS. The USE_* values are set to "implicit" so that they are
144# not reported in the build options string. You should not have to change
145# anything there.
146ifeq ($(TARGET),generic)
147 # generic system target has nothing specific
148 USE_POLL = implicit
149 USE_TPROXY = implicit
150else
151ifeq ($(TARGET),linux22)
152 # This is for Linux 2.2
153 USE_GETSOCKNAME = implicit
154 USE_POLL = implicit
155 USE_TPROXY = implicit
156else
157ifeq ($(TARGET),linux24)
158 # This is for standard Linux 2.4 with netfilter but without epoll()
159 USE_GETSOCKNAME = implicit
160 USE_NETFILTER = implicit
161 USE_POLL = implicit
162 USE_TPROXY = implicit
163else
164ifeq ($(TARGET),linux24e)
165 # This is for enhanced Linux 2.4 with netfilter and epoll() patch > 0.21
166 USE_GETSOCKNAME = implicit
167 USE_NETFILTER = implicit
168 USE_POLL = implicit
169 USE_EPOLL = implicit
170 USE_SEPOLL = implicit
171 USE_MY_EPOLL = implicit
172 USE_TPROXY = implicit
173else
174ifeq ($(TARGET),linux24eold)
175 # This is for enhanced Linux 2.4 with netfilter and epoll() patch <= 0.21,
176 # which needs a workaround for a very rare bug.
177 USE_GETSOCKNAME = implicit
178 USE_NETFILTER = implicit
179 USE_POLL = implicit
180 USE_EPOLL = implicit
181 USE_SEPOLL = implicit
182 USE_MY_EPOLL = implicit
183 USE_EPOLL_WORKAROUND = implicit
184 USE_TPROXY = implicit
185else
186ifeq ($(TARGET),linux26)
187 # This is for standard Linux 2.6 with netfilter and standard epoll()
188 USE_GETSOCKNAME = implicit
189 USE_NETFILTER = implicit
190 USE_POLL = implicit
191 USE_EPOLL = implicit
192 USE_SEPOLL = implicit
193 USE_TPROXY = implicit
194else
195ifeq ($(TARGET),solaris)
196 # This is for Solaris 8
197 USE_POLL = implicit
198 TARGET_CFLAGS = -fomit-frame-pointer -DFD_SETSIZE=65536 -D_REENTRANT
199 TARGET_LDFLAGS = -lnsl -lsocket
200 USE_TPROXY = implicit
201else
202ifeq ($(TARGET),freebsd)
203 # This is for FreeBSD
204 USE_POLL = implicit
205 USE_KQUEUE = implicit
206 USE_TPROXY = implicit
207else
208ifeq ($(TARGET),openbsd)
209 # This is for OpenBSD >= 3.0
210 USE_POLL = implicit
211 USE_KQUEUE = implicit
212 USE_TPROXY = implicit
213endif # openbsd
214endif # freebsd
215endif # solaris
216endif # linux26
217endif # linux24eold
218endif # linux24e
219endif # linux24
220endif # linux22
221endif # generic
willy tarreau036e1ce2005-12-17 13:46:33 +0100222
willy tarreau4373b962005-12-18 01:32:31 +0100223
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100224#### Old-style REGEX library settings for compatibility with previous setups.
225# It is still possible to use REGEX=<regex_lib> to select an alternative regex
226# library. By default, we use libc's regex. On Solaris 8/Sparc, grouping seems
227# to be broken using libc, so consider using pcre instead. Supported values are
228# "libc", "pcre", and "static-pcre". Use of this method is deprecated in favor
229# of "USE_PCRE" and "USE_STATIC_PCRE" (see build options below).
230REGEX = libc
willy tarreau9da061b2005-12-17 12:29:56 +0100231
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100232ifeq ($(REGEX),pcre)
233USE_PCRE = 1
234$(warning WARNING! use of "REGEX=pcre" is deprecated, consider using "USE_PCRE=1" instead.)
235endif
willy tarreau0174f312005-12-18 01:02:42 +0100236
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100237ifeq ($(REGEX),static-pcre)
238USE_STATIC_PCRE = 1
239$(warning WARNING! use of "REGEX=pcre-static" is deprecated, consider using "USE_STATIC_PCRE=1" instead.)
240endif
willy tarreau1c2ad212005-12-18 01:11:29 +0100241
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100242#### Old-style TPROXY settings
243ifneq ($(findstring -DTPROXY,$(DEFINE)),)
244USE_TPROXY = 1
245$(warning WARNING! use of "DEFINE=-DTPROXY" is deprecated, consider using "USE_TPROXY=1" instead.)
246endif
247
248
249#### Determine version, sub-version and release date.
250# If GIT is found, and IGNOREGIT is not set, VERSION, SUBVERS and VERDATE are
251# extracted from the last commit. Otherwise, use the contents of the files
252# holding the same names in the current directory.
willy tarreau0174f312005-12-18 01:02:42 +0100253
Willy Tarreau6620dbb2007-01-02 00:44:53 +0100254ifeq ($(IGNOREGIT),)
Willy Tarreauec692562007-09-09 23:31:11 +0200255VERSION := $(shell [ -d .git/. ] && ref=`(git-describe --tags) 2>/dev/null` && ref=$${ref%-g*} && echo "$${ref\#v}")
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100256ifneq ($(VERSION),)
257# OK git is there and works.
Willy Tarreaua1973c42007-04-09 22:07:11 +0200258SUBVERS := $(shell comms=`git-log --no-merges v$(VERSION).. 2>/dev/null |grep -c ^commit `; [ $$comms -gt 0 ] && echo "-$$comms" )
259VERDATE := $(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 +0200260endif
261endif
262
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100263# Last commit version not found, take it from the files.
Willy Tarreauec692562007-09-09 23:31:11 +0200264ifeq ($(VERSION),)
265VERSION := $(shell cat VERSION 2>/dev/null || touch VERSION)
266endif
267ifeq ($(SUBVERS),)
268SUBVERS := $(shell cat SUBVERS 2>/dev/null || touch SUBVERS)
269endif
270ifeq ($(VERDATE),)
271VERDATE := $(shell cat VERDATE 2>/dev/null || touch VERDATE)
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100272endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100273
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100274#### Build options
275# Do not change these ones, enable USE_* variables instead.
276OPTIONS_CFLAGS =
277OPTIONS_LDFLAGS =
278OPTIONS_OBJS =
Willy Tarreau77074d52006-11-12 23:57:19 +0100279
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100280# This variable collects all USE_* values except those set to "implicit". This
281# is used to report a list of all flags which were used to build this version.
282# Do not assign anything to it.
283BUILD_OPTIONS =
284
285# Return USE_xxx=$(USE_xxx) unless $(USE_xxx) = "implicit"
286# Usage:
287# BUILD_OPTIONS += $(call ignore_implicit,USE_xxx)
288ignore_implicit = $(patsubst %=implicit,,$(1)=$($(1)))
Willy Tarreau77074d52006-11-12 23:57:19 +0100289
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100290ifneq ($(USE_TCPSPLICE),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100291# This is the directory hosting libtcpsplice.[ah]
292TCPSPLICEDIR :=
293OPTIONS_CFLAGS += -DCONFIG_HAP_TCPSPLICE -I$(TCPSPLICEDIR)
294OPTIONS_LDFLAGS += -L$(TCPSPLICEDIR) -ltcpsplice
295BUILD_OPTIONS += $(call ignore_implicit,USE_TCPSPLICE)
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100296endif
297
Willy Tarreau77074d52006-11-12 23:57:19 +0100298ifneq ($(USE_CTTPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100299OPTIONS_CFLAGS += -DCONFIG_HAP_CTTPROXY
300OPTIONS_OBJS += src/cttproxy.o
301BUILD_OPTIONS += $(call ignore_implicit,USE_CTTPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100302endif
303
304ifneq ($(USE_TPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100305OPTIONS_CFLAGS += -DTPROXY
306BUILD_OPTIONS += $(call ignore_implicit,USE_TPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100307endif
308
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100309ifneq ($(USE_LINUX_TPROXY),)
310OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_TPROXY
311BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_TPROXY)
312endif
313
Willy Tarreau77074d52006-11-12 23:57:19 +0100314ifneq ($(USE_POLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100315OPTIONS_CFLAGS += -DENABLE_POLL
316OPTIONS_OBJS += src/ev_poll.o
317BUILD_OPTIONS += $(call ignore_implicit,USE_POLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100318endif
319
320ifneq ($(USE_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100321OPTIONS_CFLAGS += -DENABLE_EPOLL
322OPTIONS_OBJS += src/ev_epoll.o
323BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100324endif
325
Willy Tarreaude99e992007-04-16 00:53:59 +0200326ifneq ($(USE_SEPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100327OPTIONS_CFLAGS += -DENABLE_SEPOLL
328OPTIONS_OBJS += src/ev_sepoll.o
329BUILD_OPTIONS += $(call ignore_implicit,USE_SEPOLL)
Willy Tarreaude99e992007-04-16 00:53:59 +0200330endif
331
Willy Tarreau77074d52006-11-12 23:57:19 +0100332ifneq ($(USE_MY_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100333OPTIONS_CFLAGS += -DUSE_MY_EPOLL
334BUILD_OPTIONS += $(call ignore_implicit,USE_MY_EPOLL)
335endif
336
337ifneq ($(USE_KQUEUE),)
338OPTIONS_CFLAGS += -DENABLE_KQUEUE
339OPTIONS_OBJS += src/ev_kqueue.o
340BUILD_OPTIONS += $(call ignore_implicit,USE_KQUEUE)
Willy Tarreau77074d52006-11-12 23:57:19 +0100341endif
342
343ifneq ($(USE_NETFILTER),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100344OPTIONS_CFLAGS += -DNETFILTER
345BUILD_OPTIONS += $(call ignore_implicit,USE_NETFILTER)
Willy Tarreau77074d52006-11-12 23:57:19 +0100346endif
347
348ifneq ($(USE_EPOLL_WORKAROUND),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100349OPTIONS_CFLAGS += -DEPOLL_CTL_MOD_WORKAROUND
350BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL_WORKAROUND)
Willy Tarreau77074d52006-11-12 23:57:19 +0100351endif
352
353ifneq ($(USE_GETSOCKNAME),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100354OPTIONS_CFLAGS += -DUSE_GETSOCKNAME
355BUILD_OPTIONS += $(call ignore_implicit,USE_GETSOCKNAME)
Willy Tarreau77074d52006-11-12 23:57:19 +0100356endif
357
358ifneq ($(USE_REGPARM),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100359OPTIONS_CFLAGS += -DCONFIG_HAP_USE_REGPARM
360BUILD_OPTIONS += $(call ignore_implicit,USE_REGPARM)
Willy Tarreau77074d52006-11-12 23:57:19 +0100361endif
362
Willy Tarreauf32d19a2008-03-07 10:02:14 +0100363# report DLMALLOC_SRC only if explicitly specified
364ifneq ($(DLMALLOC_SRC),)
365BUILD_OPTIONS += DLMALLOC_SRC=$(DLMALLOC_SRC)
366endif
367
Willy Tarreauf14358b2008-02-19 10:53:32 +0100368ifneq ($(USE_DLMALLOC),)
369BUILD_OPTIONS += $(call ignore_implicit,USE_DLMALLOC)
370ifeq ($(DLMALLOC_SRC),)
371DLMALLOC_SRC=src/dlmalloc.c
372endif
373endif
374
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200375ifneq ($(DLMALLOC_SRC),)
Willy Tarreauf32d19a2008-03-07 10:02:14 +0100376# DLMALLOC_THRES may be changed to match PAGE_SIZE on every platform
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100377DLMALLOC_THRES = 4096
378OPTIONS_OBJS += src/dlmalloc.o
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200379endif
380
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100381ifneq ($(USE_PCRE),)
382# PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is
383# automatically detected but can be forced if required.
384ifeq ($(PCREDIR),)
385PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local)
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100386endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100387OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include
388OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -lpcreposix -lpcre
389BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE)
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100390endif
391
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100392ifneq ($(USE_STATIC_PCRE),)
393# PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is
394# automatically detected but can be forced if required.
395ifeq ($(PCREDIR),)
396PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local)
397endif
398OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include
399OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -Wl,-Bstatic -lpcreposix -lpcre -Wl,-Bdynamic
400BUILD_OPTIONS += $(call ignore_implicit,USE_STATIC_PCRE)
401endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100402
403
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100404#### Global compile options
405VERBOSE_CFLAGS = $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE)
406COPTS = -Iinclude -Wall
407COPTS += $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) $(SILENT_DEFINE)
408COPTS += $(DEBUG) $(OPTIONS_CFLAGS) $(ADDINC)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100409
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100410ifneq ($(VERSION)$(SUBVERS),)
411COPTS += -DCONFIG_HAPROXY_VERSION=\"$(VERSION)$(SUBVERS)\"
412endif
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100413
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100414ifneq ($(VERDATE),)
415COPTS += -DCONFIG_HAPROXY_DATE=\"$(VERDATE)\"
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100416endif
417
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100418#### Global link options
419# These options are added at the end of the "ld" command line. Use LDFLAGS to
420# add options at the beginning of the "ld" command line if needed.
421LDOPTS = $(TARGET_LDFLAGS) $(OPTIONS_LDFLAGS) $(ADDLIB)
willy tarreau0f7af912005-12-17 12:21:26 +0100422
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100423ifeq ($(TARGET),)
424all:
425 @echo
426 @echo "Due to too many reports of suboptimized setups, building without"
427 @echo "specifying the target is no longer supported. Please specify the"
428 @echo "target OS in the TARGET variable, in the following form:"
429 @echo
430 @echo " $ make TARGET=xxx"
431 @echo
432 @echo "Please choose the target among the following supported list :"
433 @echo
434 @echo " linux26, linux24, linux24e, linux24eold, linux22, solaris"
435 @echo " freebsd, openbsd, custom, generic"
436 @echo
437 @echo "Use \"generic\" if you don't want any optimization, \"custom\" if you"
438 @echo "want to precisely tweak every option, or choose the target which"
439 @echo "matches your OS the most in order to gain the maximum performance"
440 @echo "out of it. Please check the Makefile in case of doubts."
441 @echo
442 @exit 1
443else
willy tarreau0f7af912005-12-17 12:21:26 +0100444all: haproxy
Willy Tarreaue4208cb2008-03-11 06:37:39 +0100445endif
willy tarreau0f7af912005-12-17 12:21:26 +0100446
Willy Tarreaudd815982007-10-16 12:25:14 +0200447OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \
Willy Tarreaubaaee002006-06-26 02:48:02 +0200448 src/uri_auth.o src/standard.o src/buffers.o src/log.o src/task.o \
449 src/time.o src/fd.o src/regex.o src/cfgparse.o src/server.o \
Willy Tarreau92fb9832007-10-16 17:34:28 +0200450 src/checks.o src/queue.o src/client.o src/proxy.o src/proto_uxst.o \
Willy Tarreaubaaee002006-06-26 02:48:02 +0200451 src/proto_http.o src/stream_sock.o src/appsession.o src/backend.o \
Willy Tarreaue6b98942007-10-29 01:09:36 +0100452 src/senddata.o src/dumpstats.o src/proto_tcp.o \
Willy Tarreaue6d2e4d2007-11-15 23:56:17 +0100453 src/session.o src/hdr_idx.o src/ev_select.o \
454 src/acl.o src/memory.o \
455 src/ebtree.o src/eb32tree.o
Willy Tarreaubaaee002006-06-26 02:48:02 +0200456
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100457haproxy: $(OBJS) $(OPTIONS_OBJS)
458 $(LD) $(LDFLAGS) -o $@ $^ $(LDOPTS)
willy tarreau0f7af912005-12-17 12:21:26 +0100459
Willy Tarreaubaaee002006-06-26 02:48:02 +0200460objsize: haproxy
461 @objdump -t $^|grep ' g '|grep -F '.text'|awk '{print $$5 FS $$6}'|sort
462
willy tarreau0f7af912005-12-17 12:21:26 +0100463%.o: %.c
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100464 $(CC) $(COPTS) -c -o $@ $<
willy tarreau0f7af912005-12-17 12:21:26 +0100465
Willy Tarreau7b066db2007-12-02 11:28:59 +0100466src/haproxy.o: src/haproxy.c
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100467 $(CC) $(COPTS) \
468 -DBUILD_TARGET='"$(strip $(TARGET))"' \
469 -DBUILD_CPU='"$(strip $(CPU))"' \
470 -DBUILD_CC='"$(strip $(CC))"' \
471 -DBUILD_CFLAGS='"$(strip $(VERBOSE_CFLAGS))"' \
472 -DBUILD_OPTIONS='"$(strip $(BUILD_OPTIONS))"' \
473 -c -o $@ $<
Willy Tarreau7b066db2007-12-02 11:28:59 +0100474
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200475src/dlmalloc.o: $(DLMALLOC_SRC)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100476 $(CC) $(COPTS) -DDEFAULT_MMAP_THRESHOLD=$(DLMALLOC_THRES) -c -o $@ $<
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200477
Christian Wiese19b50292008-03-12 15:57:54 +0200478install-man:
479 install -d $(DESTDIR)/$(MANDIR)/man1
480 install -m 644 doc/haproxy.1 $(DESTDIR)/$(MANDIR)/man1
481
482install: install-man all
Christian Wiesea184aa22008-03-12 15:25:35 +0200483 install -d $(DESTDIR)/$(SBINDIR)
484 install haproxy $(DESTDIR)/$(SBINDIR)
485
willy tarreau0f7af912005-12-17 12:21:26 +0100486clean:
Willy Tarreau1a587492006-10-15 23:40:58 +0200487 rm -f *.[oas] src/*.[oas] core haproxy test
488 for dir in . src include/* doc; do rm -f $$dir/*~ $$dir/*.rej;done
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100489 rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)$(SUBVERS).tar.gz
490 rm -f haproxy-$(VERSION) nohup.out gmon.out
willy tarreauefae1842005-12-17 12:51:03 +0100491
willy tarreaue114bf92006-03-19 21:30:14 +0100492tar: clean
willy tarreaucee272f2006-03-19 21:16:26 +0100493 ln -s . haproxy-$(VERSION)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200494 tar --exclude=haproxy-$(VERSION)/.git \
495 --exclude=haproxy-$(VERSION)/haproxy-$(VERSION) \
496 --exclude=haproxy-$(VERSION)/haproxy-$(VERSION).tar.gz \
497 -cf - haproxy-$(VERSION)/* | gzip -c9 >haproxy-$(VERSION).tar.gz
willy tarreaucee272f2006-03-19 21:16:26 +0100498 rm -f haproxy-$(VERSION)
499
Willy Tarreau9f0a9012006-10-15 14:24:14 +0200500git-tar: clean
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100501 git-tar-tree HEAD haproxy-$(VERSION) | gzip -9 > haproxy-$(VERSION)$(SUBVERS).tar.gz
Willy Tarreauec692562007-09-09 23:31:11 +0200502
503version:
504 @echo "VERSION: $(VERSION)"
505 @echo "SUBVERS: $(SUBVERS)"
506 @echo "VERDATE: $(VERDATE)"
507
508# never use this one if you don't know what it is used for.
509update-version:
510 @echo "Ready to update the following versions :"
511 @echo "VERSION: $(VERSION)"
512 @echo "SUBVERS: $(SUBVERS)"
513 @echo "VERDATE: $(VERDATE)"
514 @echo "Press [ENTER] to continue or Ctrl-C to abort now.";read
515 echo "$(VERSION)" > VERSION
516 echo "$(SUBVERS)" > SUBVERS
517 echo "$(VERDATE)" > VERDATE