aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2022-08-01 22:48:43 +0200
committervaxerski <[email protected]>2022-08-01 22:48:43 +0200
commit100d29d34dbc4fb4223d771cd1ec8c14cd64357c (patch)
treeed1ed26ebb3b694ba30beee670209eacdeeaff0e /Makefile
parent00747fc6df0f14ade39e91e44c98b3e2c7829f7a (diff)
downloadHyprland-100d29d34dbc4fb4223d771cd1ec8c14cd64357c.tar.gz
Hyprland-100d29d34dbc4fb4223d771cd1ec8c14cd64357c.zip
use nproc in makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b1f120ce..17163df4 100644
--- a/Makefile
+++ b/Makefile
@@ -93,19 +93,19 @@ wlr-output-power-management-unstable-v1-protocol.o: wlr-output-power-management-
legacyrenderer:
mkdir -p build && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DLEGACY_RENDERER:STRING=true -H./ -B./build -G Ninja
- cmake --build ./build --config Release --target all -j 10
+ cmake --build ./build --config Release --target all -j $(nproc)
legacyrendererdebug:
mkdir -p build && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -DLEGACY_RENDERER:STRING=true -H./ -B./build -G Ninja
- cmake --build ./build --config Release --target all -j 10
+ cmake --build ./build --config Release --target all -j $(nproc)
release:
mkdir -p build && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -H./ -B./build -G Ninja
- cmake --build ./build --config Release --target all -j 10
+ cmake --build ./build --config Release --target all -j $(nproc)
debug:
mkdir -p build && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -H./ -B./build -G Ninja
- cmake --build ./build --config Debug --target all -j 10
+ cmake --build ./build --config Debug --target all -j $(nproc)
clear:
rm -rf build