aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRiley Beckett <rbeckettvt@gmail.com>2025-10-10 20:31:37 -0400
committerRiley Beckett <rbeckettvt@gmail.com>2025-10-10 20:31:37 -0400
commitf23baade916e844b6b6c9714e6b5d81020f6ba57 (patch)
treeccec37f011edf2c2685745d8bf678d5bf1bc8545 /Makefile
parent8a640b5309d01c363ec0eff24d7f8d96c6f3e23e (diff)
minimal layer surface code
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 300b4ce..79e9587 100644
--- a/Makefile
+++ b/Makefile
@@ -4,8 +4,8 @@ OBJDIR=objs
LIBS=egl wayland-client gl wayland-egl xkbcommon
CFLAGS=-Wall -g $(shell pkg-config --cflags $(LIBS)) -I$(OBJDIR)
LDFLAGS=$(shell pkg-config --libs $(LIBS))
-VPATH=/usr/share/wayland-protocols/staging/cursor-shape/:/usr/share/wayland-protocols/stable/tablet/:$(OBJDIR)
-WLPROT=cursor-shape-v1.xml tablet-v2.xml
+VPATH=/usr/share/wayland-protocols/staging/cursor-shape/:/usr/share/wayland-protocols/stable/tablet/:/usr/share/wayland-protocols/stable/xdg-shell/:$(OBJDIR)
+WLPROT=cursor-shape-v1.xml tablet-v2.xml wlr-layer-shell-unstable-v1.xml xdg-shell.xml
WLC=$(patsubst %.xml,$(OBJDIR)/%.c, $(WLPROT))
WLH=$(patsubst %.xml,$(OBJDIR)/%.h, $(WLPROT))
SRC=$(WLC) $(wildcard *.c) $(wildcard glad/*.c)