redict/Makefile

23 lines
337 B
Makefile
Raw Normal View History

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