aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: bf365c85f4d4b16bd5e5d38320c1f1e9a00edc88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: run client-build server-run server-build watch
run: client-build server-run
client-build:
	make -C client-web all
server-run:
	make -C server run
server-build:
	make -C server release
watch:
	make -C client-web watch &
	make -C server watch