mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 00:52:38 +00:00
17 lines
260 B
Makefile
17 lines
260 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) $@
|
|
cd deps/hiredis && $(MAKE) $@
|
|
cd deps/linenoise && $(MAKE) $@
|
|
|
|
dummy:
|