2009-03-22 05:30:00 -04:00
|
|
|
# Redis Makefile
|
|
|
|
# Copyright (C) 2009 Salvatore Sanfilippo <antirez at gmail dot com>
|
|
|
|
# This file is released under the BSD license, see the COPYING file
|
|
|
|
|
2010-05-17 18:36:48 -04:00
|
|
|
release_hdr := $(shell sh -c './mkreleasehdr.sh')
|
2009-10-26 11:25:07 -04:00
|
|
|
uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
|
2010-01-12 09:57:00 -05:00
|
|
|
OPTIMIZATION?=-O2
|
2011-06-20 05:52:15 -04:00
|
|
|
|
2011-10-29 23:20:00 -04:00
|
|
|
LUA_CFLAGS=-O2 -Wall
|
|
|
|
|
2011-06-20 05:52:15 -04:00
|
|
|
ifeq ($(uname_S),Linux)
|
|
|
|
ifneq ($(FORCE_LIBC_MALLOC),yes)
|
|
|
|
USE_JEMALLOC=yes
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2009-10-26 11:25:07 -04:00
|
|
|
ifeq ($(uname_S),SunOS)
|
2011-10-29 23:20:00 -04:00
|
|
|
# make isinf() available
|
|
|
|
LUA_CFLAGS+=-D__C99FEATURES__=1
|
2011-06-20 05:52:15 -04:00
|
|
|
CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6
|
|
|
|
CCLINK?=-ldl -lnsl -lsocket -lm -lpthread
|
|
|
|
DEBUG?=-g -ggdb
|
2009-10-26 11:25:07 -04:00
|
|
|
else
|
2011-06-20 05:52:15 -04:00
|
|
|
CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
|
|
|
|
CCLINK?=-lm -pthread
|
|
|
|
DEBUG?=-g -rdynamic -ggdb
|
2009-10-26 11:25:07 -04:00
|
|
|
endif
|
2010-10-21 18:06:44 -04:00
|
|
|
|
|
|
|
ifeq ($(USE_TCMALLOC),yes)
|
2011-06-20 05:52:15 -04:00
|
|
|
ALLOD_DEPS=
|
2011-04-19 17:54:43 -04:00
|
|
|
ALLOC_LINK=-ltcmalloc
|
|
|
|
ALLOC_FLAGS=-DUSE_TCMALLOC
|
2010-10-21 18:06:44 -04:00
|
|
|
endif
|
2011-04-19 17:54:43 -04:00
|
|
|
|
|
|
|
ifeq ($(USE_TCMALLOC_MINIMAL),yes)
|
2011-06-20 05:52:15 -04:00
|
|
|
ALLOD_DEPS=
|
2011-04-19 17:54:43 -04:00
|
|
|
ALLOC_LINK=-ltcmalloc_minimal
|
|
|
|
ALLOC_FLAGS=-DUSE_TCMALLOC
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(USE_JEMALLOC),yes)
|
2011-06-20 05:52:15 -04:00
|
|
|
ALLOC_DEP=../deps/jemalloc/lib/libjemalloc.a
|
2011-06-01 11:56:50 -04:00
|
|
|
ALLOC_LINK=$(ALLOC_DEP) -ldl
|
2011-06-20 05:52:15 -04:00
|
|
|
ALLOC_FLAGS=-DUSE_JEMALLOC -I../deps/jemalloc/include
|
2011-04-19 17:54:43 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
CCLINK+= $(ALLOC_LINK)
|
|
|
|
CFLAGS+= $(ALLOC_FLAGS)
|
2011-11-08 15:00:52 -05:00
|
|
|
LUA_CFLAGS+= $(ARCH)
|
2011-04-19 17:54:43 -04:00
|
|
|
|
2011-06-20 05:52:15 -04:00
|
|
|
CCOPT= $(CFLAGS) $(ARCH) $(PROF)
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-09-13 11:09:11 -04:00
|
|
|
PREFIX= /usr/local
|
2010-09-13 11:50:57 -04:00
|
|
|
INSTALL_BIN= $(PREFIX)/bin
|
2010-07-06 13:07:16 -04:00
|
|
|
INSTALL= cp -p
|
|
|
|
|
2011-05-04 04:17:05 -04:00
|
|
|
CCCOLOR="\033[34m"
|
|
|
|
LINKCOLOR="\033[34;1m"
|
|
|
|
SRCCOLOR="\033[33m"
|
|
|
|
BINCOLOR="\033[37;1m"
|
|
|
|
MAKECOLOR="\033[32;1m"
|
|
|
|
ENDCOLOR="\033[0m"
|
|
|
|
|
2011-06-08 11:09:18 -04:00
|
|
|
ifndef V
|
2011-06-09 05:17:32 -04:00
|
|
|
QUIET_CC = @printf ' %b %b\n' $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$@$(ENDCOLOR);
|
|
|
|
QUIET_LINK = @printf ' %b %b\n' $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR);
|
2011-06-08 11:09:18 -04:00
|
|
|
endif
|
|
|
|
|
2011-09-23 08:51:48 -04:00
|
|
|
OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endian.o slowlog.o scripting.o bio.o rio.o rand.o
|
2010-01-19 13:02:02 -05:00
|
|
|
BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
|
2010-11-08 10:26:02 -05:00
|
|
|
CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o
|
2010-03-13 09:55:42 -05:00
|
|
|
CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
|
2010-05-05 07:36:29 -04:00
|
|
|
CHECKAOFOBJ = redis-check-aof.o
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
PRGNAME = redis-server
|
|
|
|
BENCHPRGNAME = redis-benchmark
|
|
|
|
CLIPRGNAME = redis-cli
|
2010-03-13 09:55:42 -05:00
|
|
|
CHECKDUMPPRGNAME = redis-check-dump
|
2010-05-05 07:36:29 -04:00
|
|
|
CHECKAOFPRGNAME = redis-check-aof
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-11-08 07:19:58 -05:00
|
|
|
all: redis-benchmark redis-cli redis-check-dump redis-check-aof redis-server
|
2010-12-15 06:40:23 -05:00
|
|
|
@echo ""
|
|
|
|
@echo "Hint: To run 'make test' is a good idea ;)"
|
|
|
|
@echo ""
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
# Deps (use make dep to generate this)
|
2009-06-06 02:24:23 -04:00
|
|
|
adlist.o: adlist.c adlist.h zmalloc.h
|
2010-01-19 13:02:02 -05:00
|
|
|
ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
|
|
|
|
ae_epoll.o: ae_epoll.c
|
|
|
|
ae_kqueue.o: ae_kqueue.c
|
2009-11-23 12:50:39 -05:00
|
|
|
ae_select.o: ae_select.c
|
2009-06-06 02:24:23 -04:00
|
|
|
anet.o: anet.c fmacros.h anet.h
|
2010-08-30 05:37:17 -04:00
|
|
|
aof.o: aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
|
|
|
bio.o: bio.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h bio.h
|
2011-06-20 05:58:54 -04:00
|
|
|
cluster.o: cluster.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
config.o: config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2011-06-20 05:58:54 -04:00
|
|
|
crc16.o: crc16.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
db.o: db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
debug.o: debug.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h sha1.h
|
2011-06-30 07:27:32 -04:00
|
|
|
dict.o: dict.c fmacros.h dict.h zmalloc.h
|
2011-06-20 05:58:54 -04:00
|
|
|
endian.o: endian.c
|
|
|
|
intset.o: intset.c intset.h zmalloc.h endian.h
|
2009-06-06 02:24:23 -04:00
|
|
|
lzf_c.o: lzf_c.c lzfP.h
|
|
|
|
lzf_d.o: lzf_d.c lzfP.h
|
2010-08-30 05:37:17 -04:00
|
|
|
multi.o: multi.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
networking.o: networking.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
object.o: object.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2009-06-06 02:24:23 -04:00
|
|
|
pqsort.o: pqsort.c
|
2010-08-30 05:37:17 -04:00
|
|
|
pubsub.o: pubsub.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
rdb.o: rdb.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h lzf.h
|
2010-12-28 08:42:09 -05:00
|
|
|
redis-benchmark.o: redis-benchmark.c fmacros.h ae.h \
|
|
|
|
../deps/hiredis/hiredis.h sds.h adlist.h zmalloc.h
|
2010-05-13 08:30:36 -04:00
|
|
|
redis-check-aof.o: redis-check-aof.c fmacros.h config.h
|
2010-03-23 10:25:32 -04:00
|
|
|
redis-check-dump.o: redis-check-dump.c lzf.h
|
2010-12-28 08:42:09 -05:00
|
|
|
redis-cli.o: redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h \
|
|
|
|
sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h
|
2010-08-30 05:37:17 -04:00
|
|
|
redis.o: redis.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-06-30 07:27:32 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h slowlog.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
bio.h asciilogo.h
|
2010-06-13 17:45:14 -04:00
|
|
|
release.o: release.c release.h
|
2010-08-30 05:37:17 -04:00
|
|
|
replication.o: replication.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
|
|
|
scripting.o: scripting.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2011-06-30 07:27:32 -04:00
|
|
|
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h \
|
2011-09-23 09:40:58 -04:00
|
|
|
sha1.h rand.h
|
2011-05-13 11:31:00 -04:00
|
|
|
rio.o: rio.c sds.h
|
2009-06-06 02:24:23 -04:00
|
|
|
sds.o: sds.c sds.h zmalloc.h
|
2011-06-20 05:58:54 -04:00
|
|
|
sha1.o: sha1.c sha1.h config.h
|
2011-06-30 07:27:32 -04:00
|
|
|
slowlog.o: slowlog.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
|
|
|
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h \
|
|
|
|
slowlog.h
|
2010-08-30 05:37:17 -04:00
|
|
|
sort.o: sort.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h pqsort.h
|
2010-12-28 08:42:09 -05:00
|
|
|
syncio.o: syncio.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
t_hash.o: t_hash.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
t_list.o: t_list.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
t_set.o: t_set.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
t_string.o: t_string.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2010-08-30 05:37:17 -04:00
|
|
|
t_zset.o: t_zset.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2011-09-13 10:53:33 -04:00
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
2011-06-20 05:58:54 -04:00
|
|
|
util.o: util.c fmacros.h util.h
|
|
|
|
ziplist.o: ziplist.c zmalloc.h util.h ziplist.h endian.h
|
|
|
|
zipmap.o: zipmap.c zmalloc.h endian.h
|
|
|
|
zmalloc.o: zmalloc.c config.h zmalloc.h
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2011-06-20 05:52:15 -04:00
|
|
|
.PHONY: dependencies
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-12-15 06:40:23 -05:00
|
|
|
dependencies:
|
2011-06-09 05:17:32 -04:00
|
|
|
@printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)hiredis$(ENDCOLOR)
|
2011-05-04 04:17:05 -04:00
|
|
|
@cd ../deps/hiredis && $(MAKE) static ARCH="$(ARCH)"
|
2011-06-09 05:17:32 -04:00
|
|
|
@printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)linenoise$(ENDCOLOR)
|
2011-05-04 04:17:05 -04:00
|
|
|
@cd ../deps/linenoise && $(MAKE) ARCH="$(ARCH)"
|
2011-04-30 10:15:30 -04:00
|
|
|
@echo $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)Lua ansi$(ENDCOLOR)
|
2011-11-08 15:00:52 -05:00
|
|
|
@cd ../deps/lua && $(MAKE) CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(ARCH)" ansi
|
2010-12-15 06:40:23 -05:00
|
|
|
|
2011-06-20 05:52:15 -04:00
|
|
|
../deps/jemalloc/lib/libjemalloc.a:
|
2011-06-01 11:08:12 -04:00
|
|
|
cd ../deps/jemalloc && ./configure $(JEMALLOC_CFLAGS) --with-jemalloc-prefix=je_ --enable-cc-silence && $(MAKE) lib/libjemalloc.a
|
2011-06-20 05:52:15 -04:00
|
|
|
|
2011-07-27 08:46:17 -04:00
|
|
|
redis-server: dependencies $(OBJ)
|
2011-07-12 06:58:32 -04:00
|
|
|
$(QUIET_LINK)$(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ) $(CCLINK) $(ALLOC_LINK) ../deps/lua/src/liblua.a
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-12-15 06:40:23 -05:00
|
|
|
redis-benchmark: dependencies $(BENCHOBJ)
|
2011-05-04 04:17:05 -04:00
|
|
|
@cd ../deps/hiredis && $(MAKE) static
|
2011-06-20 05:52:15 -04:00
|
|
|
$(QUIET_LINK)$(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ) ../deps/hiredis/libhiredis.a $(CCLINK) $(ALLOC_LINK)
|
2010-11-04 08:37:05 -04:00
|
|
|
|
|
|
|
redis-benchmark.o:
|
2011-06-08 11:09:18 -04:00
|
|
|
$(QUIET_CC)$(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-12-15 06:40:23 -05:00
|
|
|
redis-cli: dependencies $(CLIOBJ)
|
2011-06-20 05:52:15 -04:00
|
|
|
$(QUIET_LINK)$(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o $(CCLINK) $(ALLOC_LINK)
|
2010-11-03 11:09:38 -04:00
|
|
|
|
|
|
|
redis-cli.o:
|
2011-06-08 11:09:18 -04:00
|
|
|
$(QUIET_CC)$(CC) -c $(CFLAGS) -I../deps/hiredis -I../deps/linenoise $(DEBUG) $(COMPILE_TIME) $<
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-03-13 09:55:42 -05:00
|
|
|
redis-check-dump: $(CHECKDUMPOBJ)
|
2011-06-20 05:52:15 -04:00
|
|
|
$(QUIET_LINK)$(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ) $(CCLINK) $(ALLOC_LINK)
|
2010-03-13 09:55:42 -05:00
|
|
|
|
2010-05-05 07:36:29 -04:00
|
|
|
redis-check-aof: $(CHECKAOFOBJ)
|
2011-06-20 05:52:15 -04:00
|
|
|
$(QUIET_LINK)$(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ) $(CCLINK) $(ALLOC_LINK)
|
2010-05-05 07:36:29 -04:00
|
|
|
|
2011-06-20 05:52:15 -04:00
|
|
|
# Because the jemalloc.h header is generated as a part of the jemalloc build
|
|
|
|
# process, building it should complete before building any other object.
|
|
|
|
%.o: %.c $(ALLOC_DEP)
|
2011-06-14 12:06:39 -04:00
|
|
|
$(QUIET_CC)$(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) -I../deps/lua/src $<
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
clean:
|
2010-05-05 07:36:29 -04:00
|
|
|
rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
|
2011-07-13 13:15:22 -04:00
|
|
|
cd ../deps/hiredis && $(MAKE) $@
|
|
|
|
cd ../deps/linenoise && $(MAKE) $@
|
|
|
|
cd ../deps/lua && $(MAKE) $@
|
|
|
|
-(cd ../deps/jemalloc && $(MAKE) distclean)
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
dep:
|
2010-12-28 08:42:09 -05:00
|
|
|
$(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2011-07-11 08:48:45 -04:00
|
|
|
test: redis-server redis-check-aof
|
2011-07-15 11:20:57 -04:00
|
|
|
@(cd ..; ./runtest)
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
bench:
|
|
|
|
./redis-benchmark
|
2009-03-30 06:13:43 -04:00
|
|
|
|
|
|
|
log:
|
2010-07-01 08:45:37 -04:00
|
|
|
git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
|
2009-10-23 15:24:01 -04:00
|
|
|
|
|
|
|
32bit:
|
2010-02-22 11:36:54 -05:00
|
|
|
@echo ""
|
|
|
|
@echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
|
|
|
|
@echo ""
|
2011-06-01 11:08:12 -04:00
|
|
|
$(MAKE) ARCH="-m32" JEMALLOC_CFLAGS='CFLAGS="-std=gnu99 -Wall -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -m32"'
|
2009-11-04 03:53:43 -05:00
|
|
|
|
|
|
|
gprof:
|
2010-11-21 10:44:17 -05:00
|
|
|
$(MAKE) PROF="-pg"
|
2009-11-04 03:53:43 -05:00
|
|
|
|
2009-12-14 13:48:24 -05:00
|
|
|
gcov:
|
2010-11-21 10:44:17 -05:00
|
|
|
$(MAKE) PROF="-fprofile-arcs -ftest-coverage"
|
2009-12-14 13:48:24 -05:00
|
|
|
|
2010-01-12 09:57:00 -05:00
|
|
|
noopt:
|
2010-11-21 10:44:17 -05:00
|
|
|
$(MAKE) OPTIMIZATION=""
|
2010-01-12 09:57:00 -05:00
|
|
|
|
2009-11-04 03:53:43 -05:00
|
|
|
32bitgprof:
|
2010-11-21 10:44:17 -05:00
|
|
|
$(MAKE) PROF="-pg" ARCH="-arch i386"
|
2010-07-06 13:07:16 -04:00
|
|
|
|
2011-07-13 13:15:22 -04:00
|
|
|
src/help.h:
|
|
|
|
@../utils/generate-command-help.rb > help.h
|
|
|
|
|
2010-07-06 13:07:16 -04:00
|
|
|
install: all
|
2011-10-03 10:04:44 -04:00
|
|
|
mkdir -p $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(PRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)
|