diff options
author | vaxerski <[email protected]> | 2023-10-10 20:01:02 +0100 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-10-10 20:01:02 +0100 |
commit | 1a0909aa203312b6ccfe8c34ddb6cbec63ca5199 (patch) | |
tree | 44117690fe90cd080b8429ee07484734f087df29 /Makefile | |
parent | bf94df7b00eefe67780c2049a3f8f6e034b3c73e (diff) | |
download | Hyprland-1a0909aa203312b6ccfe8c34ddb6cbec63ca5199.tar.gz Hyprland-1a0909aa203312b6ccfe8c34ddb6cbec63ca5199.zip |
makefile: set 777 for /build perms
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -3,22 +3,22 @@ PREFIX = /usr/local legacyrenderer: cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DLEGACY_RENDERER:BOOL=true -S . -B ./build -G Ninja cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` - chmod 755 ./build/Hyprland + chmod -R 777 ./build legacyrendererdebug: cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -DLEGACY_RENDERER:BOOL=true -S . -B ./build -G Ninja cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` - chmod 755 ./build/Hyprland + chmod -R 777 ./build release: cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -S . -B ./build -G Ninja cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` - chmod 755 ./build/Hyprland + chmod -R 777 ./build debug: cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -S . -B ./build -G Ninja cmake --build ./build --config Debug --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` - chmod 755 ./build/Hyprland + chmod -R 777 ./build clear: rm -rf build |