diff options
author | vaxerski <[email protected]> | 2022-11-17 18:27:50 +0000 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-11-17 18:27:50 +0000 |
commit | 724e411ffcf1e2c528a7d4fb6fc24350076ad37f (patch) | |
tree | 8f2f5ee6d1ecf1c5b345021d372b9ec2317c5d01 /Makefile | |
parent | c02bfc3897137439596df4670cef2441d24c8367 (diff) | |
download | Hyprland-724e411ffcf1e2c528a7d4fb6fc24350076ad37f.tar.gz Hyprland-724e411ffcf1e2c528a7d4fb6fc24350076ad37f.zip |
avoid header clashes in make all
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -124,9 +124,12 @@ clear: rm -rf ./subprojects/wlroots/build all: - make config + make clear + make fixwlr + cd ./subprojects/wlroots && meson build/ --buildtype=release && ninja -C build/ && cp ./build/libwlroots.so.12032 /usr/lib/ && cd ../.. + make protocols make release - cd ./hyprctl && make all && cd .. + cd hyprctl && make all && cd .. install: make clear |