aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/makefile b/makefile
index aae6704..0ecad9c 100644
--- a/makefile
+++ b/makefile
@@ -2,6 +2,7 @@
.PHONY: run client-build server-run server-build watch install
build: client-build server-build
run: client-build server-run
+install: install-server install-native
client-build:
make -C client-web all
server-run:
@@ -14,8 +15,9 @@ watch:
watch-public:
make -C client-web watch &
make -C server watch-public
-install: client-build
+install-server: client-build
cargo +nightly install --force --path server --features standalone
+install-native:
cargo +nightly install --force --path client-native-gui
cargo +nightly install --force --path client-native-rift
cargo +nightly install --force --path client-native-export-track