mirror of
https://git.sr.ht/~leon_plickat/wayneko
synced 2025-09-19 16:03:22 +02:00
neko sleeps when no one is there (ext_idle_notification_v1)
This commit is contained in:
parent
b48594f150
commit
cf3f2ad8d0
3 changed files with 201 additions and 3 deletions
10
Makefile
10
Makefile
|
@ -4,10 +4,14 @@ PREFIX=/usr/local
|
|||
BINDIR=$(PREFIX)/bin
|
||||
MANDIR=$(PREFIX)/share/man
|
||||
|
||||
CFLAGS=-Wall -Werror -Wextra -Wpedantic -Wno-unused-parameter -Wconversion -Wformat-security -Wformat -Wsign-conversion -Wfloat-conversion -Wunused-result $(shell pkg-config --cflags pixman-1)
|
||||
CFLAGS=-Wall -Werror -Wextra -Wpedantic -Wno-unused-parameter -Wconversion $\
|
||||
-Wformat-security -Wformat -Wsign-conversion -Wfloat-conversion $\
|
||||
-Wunused-result $(shell pkg-config --cflags pixman-1)
|
||||
LIBS=-lwayland-client $(shell pkg-config --libs pixman-1) -lrt
|
||||
OBJ=wayneko.o wlr-layer-shell-unstable-v1.o xdg-shell.o
|
||||
GEN=wlr-layer-shell-unstable-v1.c wlr-layer-shell-unstable-v1.h xdg-shell.c xdg-shell.h
|
||||
OBJ=wayneko.o wlr-layer-shell-unstable-v1.o xdg-shell.o ext-idle-notify-v1.o
|
||||
GEN=wlr-layer-shell-unstable-v1.c wlr-layer-shell-unstable-v1.h $\
|
||||
xdg-shell.c xdg-shell.h $\
|
||||
ext-idle-notify-v1.c ext-idle-notify-v1.h
|
||||
|
||||
wayneko: $(OBJ)
|
||||
$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue