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:
|
2024-10-17 14:20:18 +00:00
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:STRING=${PREFIX} -DLEGACY_RENDERER:BOOL=true -S . -B ./build
|
2024-09-13 16:56:39 +00:00
|
|
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
2022-04-13 15:34:13 +00:00
|
|
|
|
|
|
|
legacyrendererdebug:
|
2024-09-13 16:56:39 +00:00
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_INSTALL_PREFIX:STRING=${PREFIX} -DLEGACY_RENDERER:BOOL=true -S . -B ./build
|
2024-10-23 20:32:39 +00:00
|
|
|
cmake --build ./build --config Debug --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
2022-04-13 15:34:13 +00:00
|
|
|
|
2022-03-16 19:50:55 +00:00
|
|
|
release:
|
2024-09-13 16:56:39 +00:00
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:STRING=${PREFIX} -S . -B ./build
|
|
|
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
2022-03-16 19:50:55 +00:00
|
|
|
|
|
|
|
debug:
|
2024-09-13 16:56:39 +00:00
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_INSTALL_PREFIX:STRING=${PREFIX} -S . -B ./build
|
|
|
|
cmake --build ./build --config Debug --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
2022-03-16 19:50:55 +00:00
|
|
|
|
2024-04-23 08:02:51 +00:00
|
|
|
nopch:
|
2024-09-13 16:56:39 +00:00
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:STRING=${PREFIX} -DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON -S . -B ./build
|
|
|
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
2024-04-23 08:02:51 +00:00
|
|
|
|
2022-03-16 19:50:55 +00:00
|
|
|
clear:
|
|
|
|
rm -rf build
|
2024-04-30 23:32:42 +00:00
|
|
|
rm -f ./protocols/*.h ./protocols/*.c ./protocols/*.cpp ./protocols/*.hpp
|
2022-03-20 16:06:37 +00:00
|
|
|
|
|
|
|
all:
|
2023-05-02 13:38:36 +00:00
|
|
|
$(MAKE) clear
|
|
|
|
$(MAKE) release
|
2022-03-20 16:06:37 +00:00
|
|
|
|
|
|
|
install:
|
2024-04-21 16:56:46 +00:00
|
|
|
cmake --install ./build
|
2022-08-24 15:47:35 +00:00
|
|
|
|
2022-04-11 23:17:21 +00:00
|
|
|
uninstall:
|
2024-04-21 16:56:46 +00:00
|
|
|
xargs rm < ./build/install_manifest.txt
|
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
|
2024-06-14 10:11:40 +00:00
|
|
|
|
2023-10-14 17:48:05 +00:00
|
|
|
installheaders:
|
2023-12-06 15:31:23 +00:00
|
|
|
@if [ ! -f ./src/version.h ]; then echo -en "You need to run $(MAKE) all first.\n" && exit 1; fi
|
2023-04-29 16:41:44 +00:00
|
|
|
|
2024-05-11 11:46:04 +00:00
|
|
|
# remove previous headers from hyprpm's dir
|
2024-03-29 14:07:33 +00:00
|
|
|
rm -fr ${PREFIX}/include/hyprland
|
2023-05-01 00:04:25 +00:00
|
|
|
mkdir -p ${PREFIX}/include/hyprland
|
|
|
|
mkdir -p ${PREFIX}/include/hyprland/protocols
|
|
|
|
mkdir -p ${PREFIX}/share/pkgconfig
|
2024-04-21 16:56:46 +00:00
|
|
|
|
2024-05-21 22:02:01 +00:00
|
|
|
cmake --build ./build --config Release --target generate-protocol-headers
|
|
|
|
|
2023-05-02 13:38:36 +00:00
|
|
|
find src -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland
|
2024-05-11 11:46:04 +00:00
|
|
|
cp ./protocols/*.h* ${PREFIX}/include/hyprland/protocols
|
2023-05-01 00:04:25 +00:00
|
|
|
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
|
2024-03-01 14:14:28 +00:00
|
|
|
|
|
|
|
asan:
|
|
|
|
@echo -en "!!WARNING!!\nOnly run this in the TTY.\n"
|
|
|
|
@pidof Hyprland > /dev/null && echo -ne "Refusing to run with Hyprland running.\n" || echo ""
|
|
|
|
@pidof Hyprland > /dev/null && exit 1 || echo ""
|
|
|
|
|
|
|
|
rm -rf ./wayland
|
2024-07-21 11:09:54 +00:00
|
|
|
#git reset --hard
|
2024-03-01 14:14:28 +00:00
|
|
|
|
2024-04-06 17:50:04 +00:00
|
|
|
@echo -en "If you want to apply a patch, input its path (leave empty for none):\n"
|
2024-08-20 17:54:51 +00:00
|
|
|
@read patchvar; \
|
|
|
|
if [ -n "$$patchvar" ]; then patch -p1 < "$$patchvar" || echo ""; else echo "No patch specified"; fi
|
2024-04-06 17:50:04 +00:00
|
|
|
|
2024-03-01 14:14:28 +00:00
|
|
|
git clone --recursive https://gitlab.freedesktop.org/wayland/wayland
|
|
|
|
cd wayland && patch -p1 < ../scripts/waylandStatic.diff && meson setup build --buildtype=debug -Db_sanitize=address -Ddocumentation=false && ninja -C build && cd ..
|
|
|
|
cp ./wayland/build/src/libwayland-server.a .
|
|
|
|
@echo "Wayland done"
|
|
|
|
|
|
|
|
patch -p1 < ./scripts/hyprlandStaticAsan.diff
|
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -DWITH_ASAN:STRING=True -DUSE_TRACY:STRING=False -DUSE_TRACY_GPU:STRING=False -S . -B ./build -G Ninja
|
2024-04-21 16:56:46 +00:00
|
|
|
cmake --build ./build --config Debug --target all
|
2024-03-01 14:14:28 +00:00
|
|
|
@echo "Hyprland done"
|
|
|
|
|
2024-03-01 14:16:56 +00:00
|
|
|
ASAN_OPTIONS="detect_odr_violation=0,log_path=asan.log" HYPRLAND_NO_CRASHREPORTER=1 ./build/Hyprland -c ~/.config/hypr/hyprland.conf
|