mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-01 22:58:40 -04:00
Add an EGL compositor. Still pretty lame.
This commit is contained in:
parent
427524aedf
commit
16eb675399
3 changed files with 261 additions and 5 deletions
6
Makefile
6
Makefile
|
|
@ -3,10 +3,12 @@ LDLIBS += $(shell pkg-config --libs libffi libdrm)
|
|||
|
||||
all : wayland client
|
||||
|
||||
wayland_objs = wayland.o event-loop.o connection.o hash.o compositor.o
|
||||
wayland_objs = wayland.o event-loop.o connection.o hash.o egl-compositor.o
|
||||
wayland : CFLAGS += -I../eagle
|
||||
wayland : LDLIBS += -L../eagle -leagle -ldl
|
||||
|
||||
wayland : $(wayland_objs)
|
||||
gcc -o $@ $(wayland_objs) $(LDLIBS)
|
||||
gcc -o $@ $(LDLIBS) $(wayland_objs)
|
||||
|
||||
libwayland_objs = wayland-client.o connection.o
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue