aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-02-11 11:11:07 +0100
committermetamuffin <metamuffin@disroot.org>2023-02-11 11:11:07 +0100
commitb6a4d824c3f7c006dd7fecaa617e7ce092c971fc (patch)
treefa823869e79cd6bbabdce0fd482aa3d6c584ed06
parentc196d2528bde3c6698917f42670c4cc937eaeffe (diff)
downloadkeks-meet-b6a4d824c3f7c006dd7fecaa617e7ce092c971fc.tar
keks-meet-b6a4d824c3f7c006dd7fecaa617e7ce092c971fc.tar.bz2
keks-meet-b6a4d824c3f7c006dd7fecaa617e7ce092c971fc.tar.zst
split install rules
-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