mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-08 23:30:15 +01:00
As a preperation for future flip mode alternatives move most of the functionality from 'present.c' into a separate file. Leave some functions needed by future other flip modes in 'present.c'. Signed-off-by: Roman Gilg <subdiff@gmail.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
18 lines
343 B
Makefile
18 lines
343 B
Makefile
noinst_LTLIBRARIES = libpresent.la
|
|
AM_CFLAGS = \
|
|
-DHAVE_XORG_CONFIG_H \
|
|
@DIX_CFLAGS@ @XORG_CFLAGS@
|
|
|
|
libpresent_la_SOURCES = \
|
|
present.h \
|
|
present.c \
|
|
present_event.c \
|
|
present_fake.c \
|
|
present_fence.c \
|
|
present_notify.c \
|
|
present_priv.h \
|
|
present_request.c \
|
|
present_scmd.c \
|
|
present_screen.c
|
|
|
|
sdk_HEADERS = present.h presentext.h
|