valkey/Makefile

23 lines
337 B
Makefile
Raw Normal View History

# Top level makefile, the real shit is at src/Makefile
2010-07-06 17:10:20 +00:00
TARGETS=32bit noopt test
all:
cd src && $(MAKE) $@
2010-07-06 17:10:20 +00:00
install: dummy
cd src && $(MAKE) $@
2010-11-05 16:22:16 +00:00
clean:
cd src && $(MAKE) $@
cd deps/hiredis && $(MAKE) $@
cd deps/linenoise && $(MAKE) $@
2010-07-06 17:10:20 +00:00
2010-11-05 16:22:16 +00:00
$(TARGETS):
cd src && $(MAKE) $@
src/help.h:
@./utils/generate-command-help.rb > $@
2010-07-06 17:10:20 +00:00
dummy: