2023-04-26 21:59:16 +00:00
|
|
|
PREFIX = /usr/local
|
2023-03-14 12:57:50 +00:00
|
|
|
|
2022-04-13 15:34:13 +00:00
|
|
|
legacyrenderer:
|
2023-03-14 21:50:30 +00:00
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DLEGACY_RENDERER:BOOL=true -S . -B ./build -G Ninja
|
2023-05-02 13:38:36 +00:00
|
|
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
2023-10-10 19:01:02 +00:00
|
|
|
chmod -R 777 ./build
|
2022-04-13 15:34:13 +00:00
|
|
|
|
|
|
|
legacyrendererdebug:
|
2023-03-14 21:50:30 +00:00
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -DLEGACY_RENDERER:BOOL=true -S . -B ./build -G Ninja
|
2023-05-02 13:38:36 +00:00
|
|
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
2023-10-10 19:01:02 +00:00
|
|
|
chmod -R 777 ./build
|
2022-04-13 15:34:13 +00:00
|
|
|
|
2022-03-16 19:50:55 +00:00
|
|
|
release:
|
2023-03-14 21:50:30 +00:00
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -S . -B ./build -G Ninja
|
2023-05-02 13:38:36 +00:00
|
|
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
2023-10-10 19:01:02 +00:00
|
|
|
chmod -R 777 ./build
|
2022-03-16 19:50:55 +00:00
|
|
|
|
|
|
|
debug:
|
2023-03-14 21:50:30 +00:00
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -S . -B ./build -G Ninja
|
2023-05-02 13:38:36 +00:00
|
|
|
cmake --build ./build --config Debug --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
2023-10-10 19:01:02 +00:00
|
|
|
chmod -R 777 ./build
|
2022-03-16 19:50:55 +00:00
|
|
|
|
|
|
|
clear:
|
|
|
|
rm -rf build
|
2023-04-26 21:59:16 +00:00
|
|
|
rm -f ./protocols/*-protocol.h ./protocols/*-protocol.c
|
2022-06-29 21:06:45 +00:00
|
|
|
rm -rf ./subprojects/wlroots/build
|
2022-03-20 16:06:37 +00:00
|
|
|
|
|
|
|
all:
|
2023-10-14 17:48:05 +00:00
|
|
|
@if [[ "$EUID" = 0 ]]; then echo -en "Avoid running $(MAKE) all as sudo.\n"; fi
|
2023-05-02 13:38:36 +00:00
|
|
|
$(MAKE) clear
|
|
|
|
$(MAKE) release
|
2022-03-20 16:06:37 +00:00
|
|
|
|
|
|
|
install:
|
2023-10-14 21:30:17 +00:00
|
|
|
@if [ ! -f ./build/Hyprland ]; then echo -en "You need to run $(MAKE) all first.\n" && exit 1; fi
|
2023-10-14 17:58:23 +00:00
|
|
|
@echo -en "!NOTE: Please note make install does not compile Hyprland and only installs the already built files."
|
2022-06-25 10:13:24 +00:00
|
|
|
|
2023-03-03 22:15:15 +00:00
|
|
|
mkdir -p ${PREFIX}/share/wayland-sessions
|
2022-05-08 18:18:13 +00:00
|
|
|
mkdir -p ${PREFIX}/bin
|
2023-05-02 13:38:36 +00:00
|
|
|
cp -f ./build/Hyprland ${PREFIX}/bin
|
2023-10-14 17:48:05 +00:00
|
|
|
cp -f ./build/hyprctl/hyprctl ${PREFIX}/bin
|
2023-10-01 13:09:46 +00:00
|
|
|
chmod 755 ${PREFIX}/bin/Hyprland
|
|
|
|
chmod 755 ${PREFIX}/bin/hyprctl
|
2023-03-03 22:15:15 +00:00
|
|
|
if [ ! -f ${PREFIX}/share/wayland-sessions/hyprland.desktop ]; then cp ./example/hyprland.desktop ${PREFIX}/share/wayland-sessions; fi
|
2022-05-08 16:52:02 +00:00
|
|
|
mkdir -p ${PREFIX}/share/hyprland
|
2023-07-24 16:22:36 +00:00
|
|
|
cp ./assets/wall_* ${PREFIX}/share/hyprland
|
2023-10-14 21:30:17 +00:00
|
|
|
mkdir -p ${PREFIX}/share/xdg-desktop-portal
|
|
|
|
cp ./assets/hyprland-portals.conf ${PREFIX}/share/xdg-desktop-portal
|
2022-03-16 19:50:55 +00:00
|
|
|
|
2023-05-02 13:38:36 +00:00
|
|
|
mkdir -p ${PREFIX}/share/man/man1
|
|
|
|
install -m644 ./docs/*.1 ${PREFIX}/share/man/man1
|
2023-04-26 21:59:16 +00:00
|
|
|
|
2023-10-14 17:48:05 +00:00
|
|
|
mkdir -p ${PREFIX}/lib/
|
2023-11-24 13:08:46 +00:00
|
|
|
cp ./subprojects/wlroots/build/libwlroots.so.13032 ${PREFIX}/lib/
|
2022-10-10 15:13:56 +00:00
|
|
|
|
2023-10-14 17:48:05 +00:00
|
|
|
$(MAKE) installheaders
|
2022-08-24 15:47:35 +00:00
|
|
|
|
2022-04-11 23:17:21 +00:00
|
|
|
uninstall:
|
2022-05-08 16:52:02 +00:00
|
|
|
rm -f ${PREFIX}/share/wayland-sessions/hyprland.desktop
|
|
|
|
rm -f ${PREFIX}/bin/Hyprland
|
|
|
|
rm -f ${PREFIX}/bin/hyprctl
|
2023-11-24 13:08:46 +00:00
|
|
|
rm -f ${PREFIX}/lib/libwlroots.so.13032
|
2022-05-08 16:52:02 +00:00
|
|
|
rm -rf ${PREFIX}/share/hyprland
|
2022-08-21 15:24:46 +00:00
|
|
|
rm -f ${PREFIX}/share/man/man1/Hyprland.1
|
|
|
|
rm -f ${PREFIX}/share/man/man1/hyprctl.1
|
2022-04-11 23:17:21 +00:00
|
|
|
|
2023-02-27 12:32:38 +00:00
|
|
|
pluginenv:
|
2023-10-14 17:48:05 +00:00
|
|
|
@echo -en "$(MAKE) pluginenv has been deprecated.\nPlease run $(MAKE) all && sudo $(MAKE) installheaders\n"
|
|
|
|
@exit 1
|
|
|
|
|
|
|
|
installheaders:
|
2023-10-14 21:30:17 +00:00
|
|
|
@if [ ! -f ./build/Hyprland ]; then echo -en "You need to run $(MAKE) all first.\n" && exit 1; fi
|
2023-04-29 16:41:44 +00:00
|
|
|
|
2023-05-01 00:04:25 +00:00
|
|
|
mkdir -p ${PREFIX}/include/hyprland
|
|
|
|
mkdir -p ${PREFIX}/include/hyprland/protocols
|
|
|
|
mkdir -p ${PREFIX}/include/hyprland/wlroots
|
|
|
|
mkdir -p ${PREFIX}/share/pkgconfig
|
|
|
|
|
2023-05-02 13:38:36 +00:00
|
|
|
find src -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland
|
|
|
|
cd subprojects/wlroots/include && find . -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland/wlroots && cd ../../..
|
2023-05-11 19:17:26 +00:00
|
|
|
cd subprojects/wlroots/build/include && find . -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland/wlroots && cd ../../../..
|
2023-05-01 00:04:25 +00:00
|
|
|
cp ./protocols/*-protocol.h ${PREFIX}/include/hyprland/protocols
|
|
|
|
cp ./build/hyprland.pc ${PREFIX}/share/pkgconfig
|
2023-05-02 13:38:36 +00:00
|
|
|
if [ -d /usr/share/pkgconfig ]; then cp ./build/hyprland.pc /usr/share/pkgconfig 2>/dev/null || true; fi
|
2023-05-01 00:04:25 +00:00
|
|
|
|
2023-10-10 18:59:42 +00:00
|
|
|
chmod -R 755 ${PREFIX}/include/hyprland
|
|
|
|
chmod 755 ${PREFIX}/share/pkgconfig
|
|
|
|
|
2022-07-18 22:56:46 +00:00
|
|
|
man:
|
|
|
|
pandoc ./docs/Hyprland.1.rst \
|
|
|
|
--standalone \
|
|
|
|
--variable=header:"Hyprland User Manual" \
|
|
|
|
--variable=date:"${DATE}" \
|
|
|
|
--variable=section:1 \
|
|
|
|
--from rst \
|
2022-08-21 08:30:22 +00:00
|
|
|
--to man > ./docs/Hyprland.1
|
2022-07-18 22:56:46 +00:00
|
|
|
|
|
|
|
pandoc ./docs/hyprctl.1.rst \
|
|
|
|
--standalone \
|
|
|
|
--variable=header:"hyprctl User Manual" \
|
|
|
|
--variable=date:"${DATE}" \
|
|
|
|
--variable=section:1 \
|
|
|
|
--from rst \
|
2022-08-21 08:30:22 +00:00
|
|
|
--to man > ./docs/hyprctl.1
|