blob: 4f3a723fee14a5203e3d93febc1e9922ba701fcc [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".
41#
42# Other variables :
43# DLMALLOC_SRC : build with dlmalloc, indicate the location of dlmalloc.c.
44# DLMALLOC_THRES : should match PAGE_SIZE on every platform (default: 4096).
45# PCREDIR : force the path to libpcre.
46# IGNOREGIT : ignore GIT commit versions if set.
47# VERSION : force haproxy version reporting.
48# SUBVERS : add a sub-version (eg: platform, model, ...).
49# VERDATE : force haproxy's release date.
Willy Tarreau4f60f162007-04-08 16:39:58 +020050
Willy Tarreau4f60f162007-04-08 16:39:58 +020051
Willy Tarreau9f2b7302008-01-02 20:48:34 +010052#### TARGET system
53# Use TARGET=<target_name> to optimize for a specifc target OS among the
54# following list (use the default "generic" if uncertain) :
55# generic, linux22, linux24, linux24e, linux24eold, linux26, solaris,
56# freebsd, openbsd, custom
57TARGET = generic
Willy Tarreau4f60f162007-04-08 16:39:58 +020058
Willy Tarreau9f2b7302008-01-02 20:48:34 +010059#### TARGET CPU
60# Use CPU=<cpu_name> to optimize for a particular CPU, among the following
61# list :
62# generic, i586, i686, ultrasparc, custom
willy tarreaueedaa9f2005-12-17 14:08:03 +010063CPU = generic
willy tarreau036e1ce2005-12-17 13:46:33 +010064
Willy Tarreau9f2b7302008-01-02 20:48:34 +010065#### Toolchain options.
66# GCC is normally used both for compiling and linking.
willy tarreaueedaa9f2005-12-17 14:08:03 +010067CC = gcc
68LD = gcc
69
Willy Tarreau9f2b7302008-01-02 20:48:34 +010070#### Debug flags (typically "-g").
71# Those flags only feed CFLAGS so it is not mandatory to use this form.
72DEBUG_CFLAGS = -g
willy tarreau036e1ce2005-12-17 13:46:33 +010073
Willy Tarreau9f2b7302008-01-02 20:48:34 +010074#### Memory usage tuning
75# If small memory footprint is required, you can reduce the buffer size. There
76# are 2 buffers per concurrent session, so 16 kB buffers will eat 32 MB memory
77# with 1000 concurrent sessions. Putting it slightly lower than a page size
78# will prevent the additional parameters to go beyond a page. 8030 bytes is
79# exactly 5.5 TCP segments of 1460 bytes and is generally good. Useful tuning
80# macros include :
81# SYSTEM_MAXCONN, BUFSIZE, MAXREWRITE, REQURI_LEN, CAPTURE_LEN.
82# Example: SMALL_OPTS = -DBUFSIZE=8030 -DMAXREWRITE=1030 -DSYSTEM_MAXCONN=1024
83SMALL_OPTS =
Willy Tarreau6d1a9882007-01-07 02:03:04 +010084
Willy Tarreau9f2b7302008-01-02 20:48:34 +010085#### Debug settings
86# You can enable debugging on specific code parts by setting DEBUG=-DDEBUG_xxx.
87# Currently defined DEBUG macros include DEBUG_FULL, DEBUG_MEMORY, DEBUG_FSM,
88# DEBUG_HASH and DEBUG_PARSE_NO_SPEEDUP. Please consult sources for exact
89# meaning or do not use at all.
90DEBUG =
willy tarreau1c2ad212005-12-18 01:11:29 +010091
Willy Tarreau9f2b7302008-01-02 20:48:34 +010092#### Additional include and library dirs
93# Redefine this if you want to add some special PATH to include/libs
94ADDINC =
95ADDLIB =
willy tarreau64a3cc32005-12-18 01:13:11 +010096
Willy Tarreau9f2b7302008-01-02 20:48:34 +010097#### Specific macro definitions
98# Use DEFINE=-Dxxx to set any tunable macro. Anything declared here will appear
99# in the build options reported by "haproxy -vv". Use SILENT_DEFINE if you do
100# not want to pollute the report with complex defines.
101DEFINE =
102SILENT_DEFINE =
willy tarreau0f7af912005-12-17 12:21:26 +0100103
willy tarreau5cbea6f2005-12-17 12:48:26 +0100104
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100105#### CPU dependant optimizations
106# Some CFLAGS are set by default depending on the target CPU. Those flags only
107# feed CPU_CFLAGS, which in turn feed CFLAGS, so it is not mandatory to use
108# them. You should not have to change these options. Better use CPU_CFLAGS or
109# even CFLAGS instead.
110CPU_CFLAGS.generic = -O2
111CPU_CFLAGS.i586 = -O2 -march=i586
112CPU_CFLAGS.i686 = -O2 -march=i686
113CPU_CFLAGS.ultrasparc = -O6 -mcpu=v9 -mtune=ultrasparc
114CPU_CFLAGS = $(CPU_CFLAGS.$(CPU))
willy tarreau9da061b2005-12-17 12:29:56 +0100115
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100116#### Common CFLAGS
117# These CFLAGS contain general optimization options, CPU-specific optimizations
118# and debug flags. They may be overridden by some distributions which prefer to
119# set all of them at once instead of playing with the CPU and DEBUG variables.
120CFLAGS = $(CPU_CFLAGS) $(DEBUG_CFLAGS)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100121
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100122#### Common LDFLAGS
123# These LDFLAGS are used as the first "ld" options, regardless of any library
124# path or any other option. They may be changed to add any linker-specific
125# option at the beginning of the ld command line.
126LDFLAGS = -g
willy tarreau036e1ce2005-12-17 13:46:33 +0100127
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100128#### Target system options
129# Depending on the target platform, some options are set, as well as some
130# CFLAGS and LDFLAGS. The USE_* values are set to "implicit" so that they are
131# not reported in the build options string. You should not have to change
132# anything there.
133ifeq ($(TARGET),generic)
134 # generic system target has nothing specific
135 USE_POLL = implicit
136 USE_TPROXY = implicit
137else
138ifeq ($(TARGET),linux22)
139 # This is for Linux 2.2
140 USE_GETSOCKNAME = implicit
141 USE_POLL = implicit
142 USE_TPROXY = implicit
143else
144ifeq ($(TARGET),linux24)
145 # This is for standard Linux 2.4 with netfilter but without epoll()
146 USE_GETSOCKNAME = implicit
147 USE_NETFILTER = implicit
148 USE_POLL = implicit
149 USE_TPROXY = implicit
150else
151ifeq ($(TARGET),linux24e)
152 # This is for enhanced Linux 2.4 with netfilter and epoll() patch > 0.21
153 USE_GETSOCKNAME = implicit
154 USE_NETFILTER = implicit
155 USE_POLL = implicit
156 USE_EPOLL = implicit
157 USE_SEPOLL = implicit
158 USE_MY_EPOLL = implicit
159 USE_TPROXY = implicit
160else
161ifeq ($(TARGET),linux24eold)
162 # This is for enhanced Linux 2.4 with netfilter and epoll() patch <= 0.21,
163 # which needs a workaround for a very rare bug.
164 USE_GETSOCKNAME = implicit
165 USE_NETFILTER = implicit
166 USE_POLL = implicit
167 USE_EPOLL = implicit
168 USE_SEPOLL = implicit
169 USE_MY_EPOLL = implicit
170 USE_EPOLL_WORKAROUND = implicit
171 USE_TPROXY = implicit
172else
173ifeq ($(TARGET),linux26)
174 # This is for standard Linux 2.6 with netfilter and standard epoll()
175 USE_GETSOCKNAME = implicit
176 USE_NETFILTER = implicit
177 USE_POLL = implicit
178 USE_EPOLL = implicit
179 USE_SEPOLL = implicit
180 USE_TPROXY = implicit
181else
182ifeq ($(TARGET),solaris)
183 # This is for Solaris 8
184 USE_POLL = implicit
185 TARGET_CFLAGS = -fomit-frame-pointer -DFD_SETSIZE=65536 -D_REENTRANT
186 TARGET_LDFLAGS = -lnsl -lsocket
187 USE_TPROXY = implicit
188else
189ifeq ($(TARGET),freebsd)
190 # This is for FreeBSD
191 USE_POLL = implicit
192 USE_KQUEUE = implicit
193 USE_TPROXY = implicit
194else
195ifeq ($(TARGET),openbsd)
196 # This is for OpenBSD >= 3.0
197 USE_POLL = implicit
198 USE_KQUEUE = implicit
199 USE_TPROXY = implicit
200endif # openbsd
201endif # freebsd
202endif # solaris
203endif # linux26
204endif # linux24eold
205endif # linux24e
206endif # linux24
207endif # linux22
208endif # generic
willy tarreau036e1ce2005-12-17 13:46:33 +0100209
willy tarreau4373b962005-12-18 01:32:31 +0100210
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100211#### Old-style REGEX library settings for compatibility with previous setups.
212# It is still possible to use REGEX=<regex_lib> to select an alternative regex
213# library. By default, we use libc's regex. On Solaris 8/Sparc, grouping seems
214# to be broken using libc, so consider using pcre instead. Supported values are
215# "libc", "pcre", and "static-pcre". Use of this method is deprecated in favor
216# of "USE_PCRE" and "USE_STATIC_PCRE" (see build options below).
217REGEX = libc
willy tarreau9da061b2005-12-17 12:29:56 +0100218
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100219ifeq ($(REGEX),pcre)
220USE_PCRE = 1
221$(warning WARNING! use of "REGEX=pcre" is deprecated, consider using "USE_PCRE=1" instead.)
222endif
willy tarreau0174f312005-12-18 01:02:42 +0100223
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100224ifeq ($(REGEX),static-pcre)
225USE_STATIC_PCRE = 1
226$(warning WARNING! use of "REGEX=pcre-static" is deprecated, consider using "USE_STATIC_PCRE=1" instead.)
227endif
willy tarreau1c2ad212005-12-18 01:11:29 +0100228
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100229#### Old-style TPROXY settings
230ifneq ($(findstring -DTPROXY,$(DEFINE)),)
231USE_TPROXY = 1
232$(warning WARNING! use of "DEFINE=-DTPROXY" is deprecated, consider using "USE_TPROXY=1" instead.)
233endif
234
235
236#### Determine version, sub-version and release date.
237# If GIT is found, and IGNOREGIT is not set, VERSION, SUBVERS and VERDATE are
238# extracted from the last commit. Otherwise, use the contents of the files
239# holding the same names in the current directory.
willy tarreau0174f312005-12-18 01:02:42 +0100240
Willy Tarreau6620dbb2007-01-02 00:44:53 +0100241ifeq ($(IGNOREGIT),)
Willy Tarreauec692562007-09-09 23:31:11 +0200242VERSION := $(shell [ -d .git/. ] && ref=`(git-describe --tags) 2>/dev/null` && ref=$${ref%-g*} && echo "$${ref\#v}")
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100243ifneq ($(VERSION),)
244# OK git is there and works.
Willy Tarreaua1973c42007-04-09 22:07:11 +0200245SUBVERS := $(shell comms=`git-log --no-merges v$(VERSION).. 2>/dev/null |grep -c ^commit `; [ $$comms -gt 0 ] && echo "-$$comms" )
246VERDATE := $(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 +0200247endif
248endif
249
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100250# Last commit version not found, take it from the files.
Willy Tarreauec692562007-09-09 23:31:11 +0200251ifeq ($(VERSION),)
252VERSION := $(shell cat VERSION 2>/dev/null || touch VERSION)
253endif
254ifeq ($(SUBVERS),)
255SUBVERS := $(shell cat SUBVERS 2>/dev/null || touch SUBVERS)
256endif
257ifeq ($(VERDATE),)
258VERDATE := $(shell cat VERDATE 2>/dev/null || touch VERDATE)
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100259endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100260
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100261#### Build options
262# Do not change these ones, enable USE_* variables instead.
263OPTIONS_CFLAGS =
264OPTIONS_LDFLAGS =
265OPTIONS_OBJS =
Willy Tarreau77074d52006-11-12 23:57:19 +0100266
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100267# This variable collects all USE_* values except those set to "implicit". This
268# is used to report a list of all flags which were used to build this version.
269# Do not assign anything to it.
270BUILD_OPTIONS =
271
272# Return USE_xxx=$(USE_xxx) unless $(USE_xxx) = "implicit"
273# Usage:
274# BUILD_OPTIONS += $(call ignore_implicit,USE_xxx)
275ignore_implicit = $(patsubst %=implicit,,$(1)=$($(1)))
Willy Tarreau77074d52006-11-12 23:57:19 +0100276
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100277ifneq ($(USE_TCPSPLICE),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100278# This is the directory hosting libtcpsplice.[ah]
279TCPSPLICEDIR :=
280OPTIONS_CFLAGS += -DCONFIG_HAP_TCPSPLICE -I$(TCPSPLICEDIR)
281OPTIONS_LDFLAGS += -L$(TCPSPLICEDIR) -ltcpsplice
282BUILD_OPTIONS += $(call ignore_implicit,USE_TCPSPLICE)
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100283endif
284
Willy Tarreau77074d52006-11-12 23:57:19 +0100285ifneq ($(USE_CTTPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100286OPTIONS_CFLAGS += -DCONFIG_HAP_CTTPROXY
287OPTIONS_OBJS += src/cttproxy.o
288BUILD_OPTIONS += $(call ignore_implicit,USE_CTTPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100289endif
290
291ifneq ($(USE_TPROXY),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100292OPTIONS_CFLAGS += -DTPROXY
293BUILD_OPTIONS += $(call ignore_implicit,USE_TPROXY)
Willy Tarreau77074d52006-11-12 23:57:19 +0100294endif
295
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100296ifneq ($(USE_LINUX_TPROXY),)
297OPTIONS_CFLAGS += -DCONFIG_HAP_LINUX_TPROXY
298BUILD_OPTIONS += $(call ignore_implicit,USE_LINUX_TPROXY)
299endif
300
Willy Tarreau77074d52006-11-12 23:57:19 +0100301ifneq ($(USE_POLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100302OPTIONS_CFLAGS += -DENABLE_POLL
303OPTIONS_OBJS += src/ev_poll.o
304BUILD_OPTIONS += $(call ignore_implicit,USE_POLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100305endif
306
307ifneq ($(USE_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100308OPTIONS_CFLAGS += -DENABLE_EPOLL
309OPTIONS_OBJS += src/ev_epoll.o
310BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL)
Willy Tarreau77074d52006-11-12 23:57:19 +0100311endif
312
Willy Tarreaude99e992007-04-16 00:53:59 +0200313ifneq ($(USE_SEPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100314OPTIONS_CFLAGS += -DENABLE_SEPOLL
315OPTIONS_OBJS += src/ev_sepoll.o
316BUILD_OPTIONS += $(call ignore_implicit,USE_SEPOLL)
Willy Tarreaude99e992007-04-16 00:53:59 +0200317endif
318
Willy Tarreau77074d52006-11-12 23:57:19 +0100319ifneq ($(USE_MY_EPOLL),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100320OPTIONS_CFLAGS += -DUSE_MY_EPOLL
321BUILD_OPTIONS += $(call ignore_implicit,USE_MY_EPOLL)
322endif
323
324ifneq ($(USE_KQUEUE),)
325OPTIONS_CFLAGS += -DENABLE_KQUEUE
326OPTIONS_OBJS += src/ev_kqueue.o
327BUILD_OPTIONS += $(call ignore_implicit,USE_KQUEUE)
Willy Tarreau77074d52006-11-12 23:57:19 +0100328endif
329
330ifneq ($(USE_NETFILTER),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100331OPTIONS_CFLAGS += -DNETFILTER
332BUILD_OPTIONS += $(call ignore_implicit,USE_NETFILTER)
Willy Tarreau77074d52006-11-12 23:57:19 +0100333endif
334
335ifneq ($(USE_EPOLL_WORKAROUND),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100336OPTIONS_CFLAGS += -DEPOLL_CTL_MOD_WORKAROUND
337BUILD_OPTIONS += $(call ignore_implicit,USE_EPOLL_WORKAROUND)
Willy Tarreau77074d52006-11-12 23:57:19 +0100338endif
339
340ifneq ($(USE_GETSOCKNAME),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100341OPTIONS_CFLAGS += -DUSE_GETSOCKNAME
342BUILD_OPTIONS += $(call ignore_implicit,USE_GETSOCKNAME)
Willy Tarreau77074d52006-11-12 23:57:19 +0100343endif
344
345ifneq ($(USE_REGPARM),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100346OPTIONS_CFLAGS += -DCONFIG_HAP_USE_REGPARM
347BUILD_OPTIONS += $(call ignore_implicit,USE_REGPARM)
Willy Tarreau77074d52006-11-12 23:57:19 +0100348endif
349
Willy Tarreauf14358b2008-02-19 10:53:32 +0100350ifneq ($(USE_DLMALLOC),)
351BUILD_OPTIONS += $(call ignore_implicit,USE_DLMALLOC)
352ifeq ($(DLMALLOC_SRC),)
353DLMALLOC_SRC=src/dlmalloc.c
354endif
355endif
356
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200357ifneq ($(DLMALLOC_SRC),)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100358# May be changed to match PAGE_SIZE on every platform
359DLMALLOC_THRES = 4096
360OPTIONS_OBJS += src/dlmalloc.o
361BUILD_OPTIONS += DLMALLOC_SRC=$(DLMALLOC_SRC)
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200362endif
363
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100364ifneq ($(USE_PCRE),)
365# PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is
366# automatically detected but can be forced if required.
367ifeq ($(PCREDIR),)
368PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local)
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100369endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100370OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include
371OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -lpcreposix -lpcre
372BUILD_OPTIONS += $(call ignore_implicit,USE_PCRE)
Willy Tarreau79b34bf2006-12-22 15:28:43 +0100373endif
374
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100375ifneq ($(USE_STATIC_PCRE),)
376# PCREDIR is the directory hosting include/pcre.h and lib/libpcre.*. It is
377# automatically detected but can be forced if required.
378ifeq ($(PCREDIR),)
379PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local)
380endif
381OPTIONS_CFLAGS += -DUSE_PCRE -I$(PCREDIR)/include
382OPTIONS_LDFLAGS += -L$(PCREDIR)/lib -Wl,-Bstatic -lpcreposix -lpcre -Wl,-Bdynamic
383BUILD_OPTIONS += $(call ignore_implicit,USE_STATIC_PCRE)
384endif
Willy Tarreau77074d52006-11-12 23:57:19 +0100385
386
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100387#### Global compile options
388VERBOSE_CFLAGS = $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE)
389COPTS = -Iinclude -Wall
390COPTS += $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) $(SILENT_DEFINE)
391COPTS += $(DEBUG) $(OPTIONS_CFLAGS) $(ADDINC)
willy tarreaueedaa9f2005-12-17 14:08:03 +0100392
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100393ifneq ($(VERSION)$(SUBVERS),)
394COPTS += -DCONFIG_HAPROXY_VERSION=\"$(VERSION)$(SUBVERS)\"
395endif
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100396
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100397ifneq ($(VERDATE),)
398COPTS += -DCONFIG_HAPROXY_DATE=\"$(VERDATE)\"
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100399endif
400
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100401#### Global link options
402# These options are added at the end of the "ld" command line. Use LDFLAGS to
403# add options at the beginning of the "ld" command line if needed.
404LDOPTS = $(TARGET_LDFLAGS) $(OPTIONS_LDFLAGS) $(ADDLIB)
willy tarreau0f7af912005-12-17 12:21:26 +0100405
willy tarreau0f7af912005-12-17 12:21:26 +0100406
407all: haproxy
408
Willy Tarreaudd815982007-10-16 12:25:14 +0200409OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \
Willy Tarreaubaaee002006-06-26 02:48:02 +0200410 src/uri_auth.o src/standard.o src/buffers.o src/log.o src/task.o \
411 src/time.o src/fd.o src/regex.o src/cfgparse.o src/server.o \
Willy Tarreau92fb9832007-10-16 17:34:28 +0200412 src/checks.o src/queue.o src/client.o src/proxy.o src/proto_uxst.o \
Willy Tarreaubaaee002006-06-26 02:48:02 +0200413 src/proto_http.o src/stream_sock.o src/appsession.o src/backend.o \
Willy Tarreaue6b98942007-10-29 01:09:36 +0100414 src/senddata.o src/dumpstats.o src/proto_tcp.o \
Willy Tarreaue6d2e4d2007-11-15 23:56:17 +0100415 src/session.o src/hdr_idx.o src/ev_select.o \
416 src/acl.o src/memory.o \
417 src/ebtree.o src/eb32tree.o
Willy Tarreaubaaee002006-06-26 02:48:02 +0200418
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100419haproxy: $(OBJS) $(OPTIONS_OBJS)
420 $(LD) $(LDFLAGS) -o $@ $^ $(LDOPTS)
willy tarreau0f7af912005-12-17 12:21:26 +0100421
Willy Tarreaubaaee002006-06-26 02:48:02 +0200422objsize: haproxy
423 @objdump -t $^|grep ' g '|grep -F '.text'|awk '{print $$5 FS $$6}'|sort
424
willy tarreau0f7af912005-12-17 12:21:26 +0100425%.o: %.c
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100426 $(CC) $(COPTS) -c -o $@ $<
willy tarreau0f7af912005-12-17 12:21:26 +0100427
Willy Tarreau7b066db2007-12-02 11:28:59 +0100428src/haproxy.o: src/haproxy.c
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100429 $(CC) $(COPTS) \
430 -DBUILD_TARGET='"$(strip $(TARGET))"' \
431 -DBUILD_CPU='"$(strip $(CPU))"' \
432 -DBUILD_CC='"$(strip $(CC))"' \
433 -DBUILD_CFLAGS='"$(strip $(VERBOSE_CFLAGS))"' \
434 -DBUILD_OPTIONS='"$(strip $(BUILD_OPTIONS))"' \
435 -c -o $@ $<
Willy Tarreau7b066db2007-12-02 11:28:59 +0100436
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200437src/dlmalloc.o: $(DLMALLOC_SRC)
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100438 $(CC) $(COPTS) -DDEFAULT_MMAP_THRESHOLD=$(DLMALLOC_THRES) -c -o $@ $<
Willy Tarreauf2ef8c52007-07-11 09:19:31 +0200439
willy tarreau0f7af912005-12-17 12:21:26 +0100440clean:
Willy Tarreau1a587492006-10-15 23:40:58 +0200441 rm -f *.[oas] src/*.[oas] core haproxy test
442 for dir in . src include/* doc; do rm -f $$dir/*~ $$dir/*.rej;done
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100443 rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)$(SUBVERS).tar.gz
444 rm -f haproxy-$(VERSION) nohup.out gmon.out
willy tarreauefae1842005-12-17 12:51:03 +0100445
willy tarreaue114bf92006-03-19 21:30:14 +0100446tar: clean
willy tarreaucee272f2006-03-19 21:16:26 +0100447 ln -s . haproxy-$(VERSION)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200448 tar --exclude=haproxy-$(VERSION)/.git \
449 --exclude=haproxy-$(VERSION)/haproxy-$(VERSION) \
450 --exclude=haproxy-$(VERSION)/haproxy-$(VERSION).tar.gz \
451 -cf - haproxy-$(VERSION)/* | gzip -c9 >haproxy-$(VERSION).tar.gz
willy tarreaucee272f2006-03-19 21:16:26 +0100452 rm -f haproxy-$(VERSION)
453
Willy Tarreau9f0a9012006-10-15 14:24:14 +0200454git-tar: clean
Willy Tarreau9bf6c6e2006-12-23 11:12:04 +0100455 git-tar-tree HEAD haproxy-$(VERSION) | gzip -9 > haproxy-$(VERSION)$(SUBVERS).tar.gz
Willy Tarreauec692562007-09-09 23:31:11 +0200456
457version:
458 @echo "VERSION: $(VERSION)"
459 @echo "SUBVERS: $(SUBVERS)"
460 @echo "VERDATE: $(VERDATE)"
461
462# never use this one if you don't know what it is used for.
463update-version:
464 @echo "Ready to update the following versions :"
465 @echo "VERSION: $(VERSION)"
466 @echo "SUBVERS: $(SUBVERS)"
467 @echo "VERDATE: $(VERDATE)"
468 @echo "Press [ENTER] to continue or Ctrl-C to abort now.";read
469 echo "$(VERSION)" > VERSION
470 echo "$(SUBVERS)" > SUBVERS
471 echo "$(VERDATE)" > VERDATE