mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-06-01 22:18:37 +02:00
building within the xorg server tree. Requires additional, uncommitted
dix changes to successfully build, and successful running is still yet
to happen.
69 lines
1.1 KiB
Makefile
69 lines
1.1 KiB
Makefile
if GLX
|
|
GLX_SUBDIRS = glxext
|
|
endif
|
|
|
|
if XGLX
|
|
XGLX_SUBDIRS = glx
|
|
endif
|
|
|
|
if XEGL
|
|
XEGL_SUBDIRS = egl
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
. \
|
|
$(GLX_SUBDIRS) \
|
|
$(XGLX_SUBDIRS) \
|
|
$(XEGL_SUBDIRS)
|
|
|
|
AM_CFLAGS = \
|
|
@SERVER_DEFINES@ \
|
|
$(XGLMODULES_CFLAGS)
|
|
|
|
noinst_LIBRARIES = libxgl.a
|
|
|
|
libxgl_a_SOURCES = \
|
|
xgl.h \
|
|
xglinput.c \
|
|
xgloutput.c \
|
|
xglcmap.c \
|
|
xglparse.c \
|
|
xglscreen.c \
|
|
xglarea.c \
|
|
xglgeometry.c \
|
|
xglpixmap.c \
|
|
xglsync.c \
|
|
xglsolid.c \
|
|
xgltile.c \
|
|
xglcopy.c \
|
|
xglfill.c \
|
|
xglwindow.c \
|
|
xglbstore.c \
|
|
xglget.c \
|
|
xglgc.c \
|
|
xglshm.c \
|
|
xglcomp.c \
|
|
xglpict.c \
|
|
xglglyph.c \
|
|
xgltrap.c \
|
|
xglhash.c \
|
|
xglloader.c \
|
|
xglglx.c
|
|
|
|
Xgl_LDFLAGS = -export-dynamic
|
|
Xgl_SOURCES = \
|
|
xglinit.c \
|
|
$(top_srcdir)/mi/miinitext.c \
|
|
$(top_srcdir)/Xext/dpmsstubs.c \
|
|
$(top_srcdir)/Xi/stubs.c \
|
|
$(top_srcdir)/fb/fbcmap.c
|
|
Xgl_LDADD = \
|
|
libxgl.a \
|
|
$(XORG_CORE_LIBS) \
|
|
$(XGL_LIBS) \
|
|
$(XSERVER_LIBS) \
|
|
$(EXTENSION_LIBS) \
|
|
$(XGLMODULES_LIBS)
|
|
Xgl_programs = Xgl
|
|
|
|
bin_PROGRAMS = $(Xgl_programs)
|