summaryrefslogtreecommitdiff
path: root/backend/Makefile
blob: a592749a61e08bbdf1c0ba2b9e1cf6923acbb6df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
all:
	zig build test && zig build run

build:
	zig build && cp zig-out/bin/backend app

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