blob: e0f60e8b70a7704368d345b177844a6b9ff9e277 (
plain)
1
2
3
4
5
6
7
8
9
10
|
all:
zig build test && zig build run
test:
zig build test
# It is important that this comand only runs on unix machines
deps:
git clone https://github.com/redis/hiredis
cd hiredis; sudo make install
|