From 6c8025c6dec52a26103186848510d72936f15603 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Sun, 15 Jan 2023 20:05:05 +0100 Subject: update some stuff --- makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index 9f91a54..089afe0 100644 --- a/makefile +++ b/makefile @@ -12,7 +12,7 @@ watch: make -C client-web watch & make -C server watch install: - cargo install --path server - cargo install --path client-native-gui - cargo install --path client-native-rift - cargo install --path client-native-export-track + cargo +nightly install --force --path server + 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 -- cgit v1.2.3-70-g09d2 From c196d2528bde3c6698917f42670c4cc937eaeffe Mon Sep 17 00:00:00 2001 From: metamuffin Date: Sat, 11 Feb 2023 11:10:01 +0100 Subject: install standalone by default --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index 80953e6..aae6704 100644 --- a/makefile +++ b/makefile @@ -14,8 +14,8 @@ watch: watch-public: make -C client-web watch & make -C server watch-public -install: - cargo +nightly install --force --path server +install: client-build + cargo +nightly install --force --path server --features standalone 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 -- cgit v1.2.3-70-g09d2 From b6a4d824c3f7c006dd7fecaa617e7ce092c971fc Mon Sep 17 00:00:00 2001 From: metamuffin Date: Sat, 11 Feb 2023 11:11:07 +0100 Subject: split install rules --- makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'makefile') 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 -- cgit v1.2.3-70-g09d2