mirror of
https://github.com/fluencelabs/redis
synced 2025-04-24 18:12:13 +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
|