2006-03-19 19:56:52 +00:00
|
|
|
# This makefile is dedicated to OpenBSD (and possibly other BSDs)
|
2006-10-15 21:50:42 +00:00
|
|
|
# You should use it this way :
|
|
|
|
# make TARGET=os CPU=cpu
|
2007-07-11 07:19:31 +00:00
|
|
|
#
|
|
|
|
# Some optional components may be added, such as DLMALLOC :
|
|
|
|
#
|
|
|
|
# make TARGET=freebsd CPU=i686 DLMALLOC_SRC=/usr/local/src/dlmalloc.c \
|
|
|
|
# OPT_OBJS=src/dlmalloc.o
|
2006-10-15 21:50:42 +00:00
|
|
|
|
2007-06-17 21:41:40 +00:00
|
|
|
VERSION := 1.3.12
|
2006-03-19 19:56:52 +00:00
|
|
|
|
|
|
|
# Select target OS. TARGET must match a system for which COPTS and LIBS are
|
|
|
|
# correctly defined below.
|
|
|
|
TARGET = openbsd
|
|
|
|
|
|
|
|
# pass CPU=<cpu_name> to make to optimize for a particular CPU
|
|
|
|
CPU = generic
|
|
|
|
#CPU = i586
|
|
|
|
#CPU = i686
|
|
|
|
#CPU = ultrasparc
|
|
|
|
|
|
|
|
# By default, we use libc's regex. WARNING! On Solaris 8/Sparc, group
|
|
|
|
# references seem broken using libc ! Use pcre instead.
|
|
|
|
REGEX=libc
|
|
|
|
#REGEX=pcre
|
|
|
|
#REGEX=static-pcre
|
|
|
|
|
|
|
|
# tools options
|
|
|
|
CC = gcc
|
|
|
|
LD = gcc
|
|
|
|
|
2006-10-15 21:50:42 +00:00
|
|
|
# This is the directory hosting include/pcre.h and lib/libpcre.* when REGEX=pcre
|
|
|
|
PCREDIR!= pcre-config --prefix 2>/dev/null || :
|
|
|
|
#PCREDIR=/usr/local
|
2006-03-19 19:56:52 +00:00
|
|
|
|
2006-10-15 21:50:42 +00:00
|
|
|
# This is for OpenBSD 3.0 and above
|
2007-04-09 10:03:06 +00:00
|
|
|
COPTS.openbsd = -DENABLE_POLL -DENABLE_KQUEUE
|
2006-03-19 19:56:52 +00:00
|
|
|
LIBS.openbsd =
|
|
|
|
|
|
|
|
# CPU dependant optimizations
|
|
|
|
COPTS.generic = -O2
|
|
|
|
COPTS.i586 = -O2 -march=i586
|
|
|
|
COPTS.i686 = -O2 -march=i686
|
|
|
|
COPTS.ultrasparc = -O6 -mcpu=v9 -mtune=ultrasparc
|
|
|
|
|
|
|
|
# options for standard regex library
|
|
|
|
COPTS.libc=
|
|
|
|
LIBS.libc=
|
|
|
|
|
|
|
|
# options for libpcre
|
|
|
|
COPTS.pcre=-DUSE_PCRE -I$(PCREDIR)/include
|
|
|
|
LIBS.pcre=-L$(PCREDIR)/lib -lpcreposix -lpcre
|
|
|
|
|
|
|
|
# options for static libpcre
|
|
|
|
COPTS.static-pcre=-DUSE_PCRE -I$(PCREDIR)/include
|
|
|
|
LIBS.static-pcre=-L$(PCREDIR)/lib -Wl,-Bstatic -lpcreposix -lpcre -Wl,-Bdynamic
|
|
|
|
|
|
|
|
# you can enable debug arguments with "DEBUG=-g" or disable them with "DEBUG="
|
|
|
|
#DEBUG = -g -DDEBUG_MEMORY -DDEBUG_FULL
|
|
|
|
DEBUG = -g
|
|
|
|
|
|
|
|
# if small memory footprint is required, you can reduce the buffer size. There
|
|
|
|
# are 2 buffers per concurrent session, so 16 kB buffers will eat 32 MB memory
|
|
|
|
# with 1000 concurrent sessions. Putting it slightly lower than a page size
|
|
|
|
# will avoid the additionnal paramters to overflow a page. 8030 bytes is
|
|
|
|
# exactly 5.5 TCP segments of 1460 bytes.
|
|
|
|
#SMALL_OPTS =
|
|
|
|
SMALL_OPTS = -DBUFSIZE=8030 -DMAXREWRITE=1030 -DSYSTEM_MAXCONN=1024
|
|
|
|
|
|
|
|
# redefine this if you want to add some special PATH to include/libs
|
|
|
|
ADDINC =
|
|
|
|
ADDLIB =
|
|
|
|
|
2007-07-11 07:19:31 +00:00
|
|
|
# redefine this if you want to add some special .o files
|
|
|
|
OPT_OBJS =
|
|
|
|
|
2006-03-19 19:56:52 +00:00
|
|
|
# set some defines when needed.
|
2006-10-15 21:50:42 +00:00
|
|
|
# Known ones are -DENABLE_POLL
|
2006-03-19 19:56:52 +00:00
|
|
|
# - use -DTPROXY to compile with transparent proxy support.
|
2006-06-26 00:48:02 +00:00
|
|
|
DEFINE = -DTPROXY
|
2006-03-19 19:56:52 +00:00
|
|
|
|
2007-07-11 07:19:31 +00:00
|
|
|
# May be changed to patch PAGE_SIZE on every platform when using dlmalloc
|
|
|
|
DLMALLOC_THRES=4096
|
|
|
|
|
2006-03-19 19:56:52 +00:00
|
|
|
# global options
|
|
|
|
TARGET_OPTS=$(COPTS.$(TARGET))
|
|
|
|
REGEX_OPTS=$(COPTS.$(REGEX))
|
|
|
|
CPU_OPTS=$(COPTS.$(CPU))
|
|
|
|
|
2006-10-15 21:50:42 +00:00
|
|
|
COPTS=-Iinclude $(ADDINC) $(CPU_OPTS) $(TARGET_OPTS) $(REGEX_OPTS) $(SMALL_OPTS) $(DEFINE)
|
2006-03-19 19:56:52 +00:00
|
|
|
LIBS=$(LIBS.$(TARGET)) $(LIBS.$(REGEX)) $(ADDLIB)
|
|
|
|
|
|
|
|
CFLAGS = -Wall $(COPTS) $(DEBUG)
|
|
|
|
LDFLAGS = -g
|
|
|
|
|
2007-09-09 19:56:53 +00:00
|
|
|
OBJS = src/haproxy.o src/sessionhash.o src/base64.o \
|
2006-10-15 21:50:42 +00:00
|
|
|
src/uri_auth.o src/standard.o src/buffers.o src/log.o src/task.o \
|
|
|
|
src/time.o src/fd.o src/regex.o src/cfgparse.o src/server.o \
|
2007-05-13 19:45:51 +00:00
|
|
|
src/checks.o src/queue.o src/client.o src/proxy.o \
|
2006-10-15 21:50:42 +00:00
|
|
|
src/proto_http.o src/stream_sock.o src/appsession.o src/backend.o \
|
2007-04-30 15:30:59 +00:00
|
|
|
src/session.o src/hdr_idx.o src/ev_select.o src/ev_poll.o \
|
2007-05-13 16:26:08 +00:00
|
|
|
src/ev_kqueue.o src/acl.o src/memory.o
|
2006-10-15 21:50:42 +00:00
|
|
|
|
2006-03-19 19:56:52 +00:00
|
|
|
all: haproxy
|
|
|
|
|
2007-07-11 07:19:31 +00:00
|
|
|
haproxy: $(OBJS) $(OPT_OBJS)
|
2006-03-19 19:56:52 +00:00
|
|
|
$(LD) $(LDFLAGS) -o $@ $> $(LIBS)
|
|
|
|
|
2006-10-15 21:50:42 +00:00
|
|
|
.SUFFIXES: .c.o
|
2006-03-19 19:56:52 +00:00
|
|
|
|
2006-10-15 21:50:42 +00:00
|
|
|
.c.o:
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $>
|
2006-03-19 19:56:52 +00:00
|
|
|
|
2007-07-11 07:19:31 +00:00
|
|
|
src/dlmalloc.o: $(DLMALLOC_SRC)
|
|
|
|
$(CC) $(CFLAGS) -DDEFAULT_MMAP_THRESHOLD=$(DLMALLOC_THRES) -c -o $@ $>
|
|
|
|
|
2006-03-19 19:56:52 +00:00
|
|
|
clean:
|
2006-10-15 21:50:42 +00:00
|
|
|
rm -f *.[oas] src/*.[oas] core haproxy test
|
|
|
|
for dir in . src include/* doc; do rm -f $$dir/*~ $$dir/*.rej;done
|
|
|
|
rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION) nohup.out gmon.out
|