redis/Makefile

20 lines
284 B
Makefile
Raw Normal View History

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