mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-10-31 22:25:25 -04:00
27 lines
593 B
Makefile
27 lines
593 B
Makefile
noinst_PROGRAMS = compositor
|
|
|
|
INCLUDES = -I$(top_srcdir)/wayland $(COMPOSITOR_CFLAGS)
|
|
AM_CPPFLAGS = -DDATADIR='"$(datadir)"'
|
|
|
|
compositor_LDADD = \
|
|
$(top_builddir)/wayland/libwayland-server.la \
|
|
$(COMPOSITOR_LIBS)
|
|
|
|
compositor_SOURCES = \
|
|
compositor.c \
|
|
compositor.h \
|
|
compositor-drm.c \
|
|
compositor-x11.c \
|
|
screenshooter.c \
|
|
screenshooter-protocol.c \
|
|
screenshooter-server-protocol.h \
|
|
drm.c \
|
|
shm.c
|
|
|
|
BUILT_SOURCES = \
|
|
screenshooter-server-protocol.h \
|
|
screenshooter-protocol.c
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
include $(top_srcdir)/wayland/scanner.mk
|