mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-03 09:01:42 -05:00
18 lines
308 B
Makefile
18 lines
308 B
Makefile
|
|
include ../config.mk
|
||
|
|
|
||
|
|
CFLAGS += $(COMPOSITOR_CFLAGS)
|
||
|
|
LDLIBS += -L.. -lwayland-server $(COMPOSITOR_LIBS) -rdynamic -lrt -lEGL -lm
|
||
|
|
|
||
|
|
all : compositor
|
||
|
|
|
||
|
|
compositor : \
|
||
|
|
compositor.o \
|
||
|
|
compositor-drm.o \
|
||
|
|
compositor-x11.o \
|
||
|
|
screenshooter.o \
|
||
|
|
drm.o
|
||
|
|
|
||
|
|
clean :
|
||
|
|
rm -f compositor *.o .*.deps
|
||
|
|
|
||
|
|
install :
|