12 lines
351 B
Makefile
12 lines
351 B
Makefile
all: compile
|
|
|
|
proto:
|
|
wayland-scanner server-header $(shell pkg-config --variable=pkgdatadir wayland-protocols)/stable/xdg-shell/xdg-shell.xml xdg-shell-protocol.h
|
|
|
|
compile: proto
|
|
gcc -o absinthe src/* \
|
|
-DXWAYLAND \
|
|
-I./ -I./include -DWLR_USE_UNSTABLE $(shell pkg-config wlroots-0.20 --libs --cflags) -lwayland-server -lxkbcommon \
|
|
-O3 \
|
|
-g
|