X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/fd8ccf4419ab94ab5a9250c0dc7a8d1761056b48..e0e1c195202dd74ab22554dd4293672cc95368ee:/Makefile diff --git a/Makefile b/Makefile index 4fe428c4..f6790945 100644 --- a/Makefile +++ b/Makefile @@ -1,66 +1,14 @@ -# Redis Makefile -# Copyright (C) 2009 Salvatore Sanfilippo -# This file is released under the BSD license, see the COPYING file +# Top level makefile, the real shit is at src/Makefile -DEBUG?= -g -rdynamic -ggdb -CFLAGS?= -std=c99 -O2 -pedantic -Wall -W -CCOPT= $(CFLAGS) $(ARCH) +TARGETS=32bit noopt test -OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o -BENCHOBJ = ae.o anet.o benchmark.o sds.o adlist.o zmalloc.o -CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o +all: + cd src && $(MAKE) $@ -PRGNAME = redis-server -BENCHPRGNAME = redis-benchmark -CLIPRGNAME = redis-cli +install: dummy + cd src && $(MAKE) $@ -all: redis-server redis-benchmark redis-cli +$(TARGETS) clean: + cd src && $(MAKE) $@ -# Deps (use make dep to generate this) -adlist.o: adlist.c adlist.h zmalloc.h -ae.o: ae.c ae.h zmalloc.h -anet.o: anet.c fmacros.h anet.h -benchmark.o: benchmark.c fmacros.h ae.h anet.h sds.h adlist.h zmalloc.h -dict.o: dict.c fmacros.h dict.h zmalloc.h -lzf_c.o: lzf_c.c lzfP.h -lzf_d.o: lzf_d.c lzfP.h -pqsort.o: pqsort.c -redis-cli.o: redis-cli.c fmacros.h anet.h sds.h adlist.h zmalloc.h -redis.o: redis.c fmacros.h ae.h sds.h anet.h dict.h adlist.h zmalloc.h lzf.h pqsort.h config.h -sds.o: sds.c sds.h zmalloc.h -zmalloc.o: zmalloc.c config.h - -redis-server: $(OBJ) - $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ) - @echo "" - @echo "Hint: To run the test-redis.tcl script is a good idea." - @echo "Launch the redis server with ./redis-server, then in another" - @echo "terminal window enter this directory and run 'make test'." - @echo "" - -redis-benchmark: $(BENCHOBJ) - $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ) - -redis-cli: $(CLIOBJ) - $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) - -.c.o: - $(CC) -c $(CCOPT) $(DEBUG) $(COMPILE_TIME) $< - -clean: - rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) *.o - -dep: - $(CC) -MM *.c - -test: - tclsh test-redis.tcl - -bench: - ./redis-benchmark - -log: - git log '--pretty=format:%ad %s' --date=short > Changelog - -32bit: - make ARCH="-arch i386" +dummy: