2026-01-02 22:53:34 +07:00
|
|
|
all: compile
|
|
|
|
|
|
|
|
|
|
proto:
|
2026-01-20 23:55:27 +07:00
|
|
|
wayland-scanner server-header $(shell pkg-config --variable=pkgdatadir wayland-protocols)/stable/xdg-shell/xdg-shell.xml xdg-shell-protocol.h
|
2026-05-03 22:56:12 +07:00
|
|
|
wayland-scanner server-header ./protocols/wlr-layer-shell-unstable-v1.xml wlr-layer-shell-unstable-v1-protocol.h
|
2026-01-02 22:53:34 +07:00
|
|
|
|
|
|
|
|
compile: proto
|
|
|
|
|
gcc -o absinthe src/* \
|
2026-05-03 22:56:12 +07:00
|
|
|
-Wall -Wextra -Wpedantic \
|
2026-04-01 17:42:16 +07:00
|
|
|
-I./ -I./include -DWLR_USE_UNSTABLE $(shell pkg-config wlroots-0.20 --libs --cflags) -lwayland-server -lxkbcommon \
|
2026-04-20 19:57:43 +07:00
|
|
|
-O3 \
|
2026-04-15 22:57:27 +07:00
|
|
|
-g
|
2026-04-28 18:46:46 +07:00
|
|
|
|
|
|
|
|
format:
|
|
|
|
|
find src/ -type f -print0 | xargs -0 clang-format -i
|
|
|
|
|
find include/ -type f -print0 | xargs -0 clang-format -i
|