20 lines
178 B
Bash
Executable File
20 lines
178 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# build redis script
|
|
#
|
|
|
|
|
|
cd ./deps/jemalloc && ./configure && bash autogen.sh
|
|
|
|
cd ../ && make hiredis jemalloc linenoise lua
|
|
|
|
cd ../
|
|
|
|
make clean
|
|
|
|
make
|
|
|
|
|
|
|