diff options
author | metamuffin <metamuffin@disroot.org> | 2023-02-11 11:11:07 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-02-11 11:11:07 +0100 |
commit | b6a4d824c3f7c006dd7fecaa617e7ce092c971fc (patch) | |
tree | fa823869e79cd6bbabdce0fd482aa3d6c584ed06 /makefile | |
parent | c196d2528bde3c6698917f42670c4cc937eaeffe (diff) | |
download | keks-meet-b6a4d824c3f7c006dd7fecaa617e7ce092c971fc.tar keks-meet-b6a4d824c3f7c006dd7fecaa617e7ce092c971fc.tar.bz2 keks-meet-b6a4d824c3f7c006dd7fecaa617e7ce092c971fc.tar.zst |
split install rules
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |