Nuklear/demo/wayland_rawfb/Makefile
skoperst a88cd062b7 Add pure C wayland demo
This implementation uses software rendering in native wayland client.
2019-12-12 21:24:46 +02:00

10 lines
191 B
Makefile

WAYLAND=`pkg-config wayland-client --cflags --libs`
CFLAGS?=-std=c11 -Wall -Werror -O3 -fvisibility=hidden
hello_wayland: main.c
$(CC) -o demo *.c $(WAYLAND) -lrt -lm
clean:
$(RM) demo