2026-05-08 19:15:07 +07:00
|
|
|
include config.mk
|
|
|
|
|
|
2026-01-02 22:53:34 +07:00
|
|
|
all: compile
|
|
|
|
|
|
|
|
|
|
proto:
|
2026-05-08 19:15:07 +07:00
|
|
|
$(WAYLAND_SCANNER) server-header $(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml xdg-shell-protocol.h
|
|
|
|
|
$(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
|
2026-05-08 19:15:07 +07:00
|
|
|
cc -o absinthe src/* $(CFLAGS) $(LDFLAGS)
|
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
|