From 3d09c6d526a37b3bfd81bdd6d7427272d1ba90ac Mon Sep 17 00:00:00 2001 From: Vaxry Date: Wed, 1 May 2024 00:32:42 +0100 Subject: [PATCH] makefile: fix old headers only being copied --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cd93173b..07731993 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ nopch: clear: rm -rf build - rm -f ./protocols/*-protocol.h ./protocols/*-protocol.c + rm -f ./protocols/*.h ./protocols/*.c ./protocols/*.cpp ./protocols/*.hpp rm -rf ./subprojects/wlroots-hyprland/build all: @@ -99,7 +99,8 @@ installheaders: find src -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland cd subprojects/wlroots-hyprland/include && find . -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland/wlroots-hyprland && cd ../../.. cd subprojects/wlroots-hyprland/build/include && find . -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland/wlroots-hyprland && cd ../../../.. - cp ./protocols/*-protocol.h ${PREFIX}/include/hyprland/protocols + cp ./protocols/*.h ${PREFIX}/include/hyprland/protocols + cp ./protocols/*.hpp ${PREFIX}/include/hyprland/protocols cp ./build/hyprland.pc ${PREFIX}/share/pkgconfig if [ -d /usr/share/pkgconfig ]; then cp ./build/hyprland.pc /usr/share/pkgconfig 2>/dev/null || true; fi