mirror of
https://github.com/fluencelabs/redis
synced 2025-05-11 18:27:12 +00:00
15 lines
215 B
Makefile
15 lines
215 B
Makefile
# Top level makefile, the real shit is at src/Makefile
|
|
|
|
default: all
|
|
|
|
.DEFAULT:
|
|
cd src && $(MAKE) $@
|
|
|
|
wasm:
|
|
cd src && $(MAKE) -f Makefile_wasm && mv redis.wasm ../
|
|
|
|
install:
|
|
cd src && $(MAKE) $@
|
|
|
|
.PHONY: install
|