a88cd062b7
This implementation uses software rendering in native wayland client.
10 lines
191 B
Makefile
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
|