mirror of
https://github.com/fluencelabs/redis
synced 2025-04-02 15:51:05 +00:00
top level Makefile now just a proxy. Doing make clean inside src now does a full clean including deps, not just Redis source. Thanks to Pieter for the top level Makefile proxy trick.
This commit is contained in:
parent
5cb4850708
commit
319bb48c01
22
Makefile
22
Makefile
@ -1,25 +1,7 @@
|
|||||||
# Top level makefile, the real shit is at src/Makefile
|
# Top level makefile, the real shit is at src/Makefile
|
||||||
|
|
||||||
TARGETS=32bit noopt test
|
default: all
|
||||||
|
|
||||||
all:
|
.DEFAULT:
|
||||||
cd src && $(MAKE) $@
|
cd src && $(MAKE) $@
|
||||||
|
|
||||||
install: dummy
|
|
||||||
cd src && $(MAKE) $@
|
|
||||||
|
|
||||||
clean:
|
|
||||||
cd src && $(MAKE) $@
|
|
||||||
cd deps/hiredis && $(MAKE) $@
|
|
||||||
cd deps/linenoise && $(MAKE) $@
|
|
||||||
cd deps/jemalloc && $(MAKE) distclean
|
|
||||||
cd deps/lua && $(MAKE) $@
|
|
||||||
-(cd deps/jemalloc && $(MAKE) distclean)
|
|
||||||
|
|
||||||
$(TARGETS):
|
|
||||||
cd src && $(MAKE) $@
|
|
||||||
|
|
||||||
src/help.h:
|
|
||||||
@./utils/generate-command-help.rb > $@
|
|
||||||
|
|
||||||
dummy:
|
|
||||||
|
@ -198,6 +198,10 @@ redis-check-aof: $(CHECKAOFOBJ)
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
|
rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
|
||||||
|
cd ../deps/hiredis && $(MAKE) $@
|
||||||
|
cd ../deps/linenoise && $(MAKE) $@
|
||||||
|
cd ../deps/lua && $(MAKE) $@
|
||||||
|
-(cd ../deps/jemalloc && $(MAKE) distclean)
|
||||||
|
|
||||||
dep:
|
dep:
|
||||||
$(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise
|
$(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise
|
||||||
@ -229,6 +233,9 @@ noopt:
|
|||||||
32bitgprof:
|
32bitgprof:
|
||||||
$(MAKE) PROF="-pg" ARCH="-arch i386"
|
$(MAKE) PROF="-pg" ARCH="-arch i386"
|
||||||
|
|
||||||
|
src/help.h:
|
||||||
|
@../utils/generate-command-help.rb > help.h
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
mkdir -p $(INSTALL_BIN)
|
mkdir -p $(INSTALL_BIN)
|
||||||
$(INSTALL) $(PRGNAME) $(INSTALL_BIN)
|
$(INSTALL) $(PRGNAME) $(INSTALL_BIN)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user