mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 00:52:38 +00:00
5397f2b596
updated via commands.json in redis-doc repo. Currently use `make src/help.h` to re-generate. The following are valid from the REPL: help help [command] help [group] help groups ex: help sort help hash
18 lines
249 B
Makefile
18 lines
249 B
Makefile
# Top level makefile, the real shit is at src/Makefile
|
|
|
|
TARGETS=32bit noopt test
|
|
|
|
all:
|
|
cd src && $(MAKE) $@
|
|
|
|
install: dummy
|
|
cd src && $(MAKE) $@
|
|
|
|
$(TARGETS) clean:
|
|
cd src && $(MAKE) $@
|
|
|
|
src/help.h:
|
|
@./utils/generate-command-help.rb > $@
|
|
|
|
dummy:
|