Files
absinthe/Makefile
T

15 lines
444 B
Makefile
Raw Normal View History

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)
format:
find src/ -type f -print0 | xargs -0 clang-format -i
find include/ -type f -print0 | xargs -0 clang-format -i