blob: 7072df82215c925e6680d4c26a50641cfda12e73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
.PHONY: run client-build server-run server-build watch install
build: client-build server-build
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
watch-public:
make -C client-web watch &
make -C server watch-public
install:
cargo install --path server
cargo install --path client-native-gui
cargo install --path client-native-rift
cargo install --path client-native-export-track
|