mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Rather than building the tiny amount of code required for XFree86-DRI as an external module, build it in if it's enabled at configure time. v2: Fix test/Makefile.am to only link libdri.la if DRI is set Signed-off-by: Daniel Stone <daniel@fooishbar.org> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Keith Packard <keithp@keithp.com> fixup for DRI1 move Signed-off-by: Keith Packard <keithp@keithp.com>
22 lines
452 B
Makefile
22 lines
452 B
Makefile
noinst_LTLIBRARIES = libloader.la
|
|
|
|
INCLUDES = $(XORG_INCS) -I$(srcdir)/../parser -I$(top_srcdir)/miext/cw \
|
|
-I$(srcdir)/../ddc -I$(srcdir)/../i2c -I$(srcdir)/../modes \
|
|
-I$(srcdir)/../ramdac -I$(srcdir)/../dri
|
|
|
|
#AM_LDFLAGS = -r
|
|
AM_CFLAGS = $(DIX_CFLAGS) $(XORG_CFLAGS)
|
|
|
|
EXTRA_DIST = \
|
|
loader.h \
|
|
loaderProcs.h
|
|
|
|
libloader_la_SOURCES = \
|
|
loader.c \
|
|
loaderProcs.h \
|
|
loadext.c \
|
|
loadmod.c \
|
|
os.c
|
|
|
|
libloader_la_LIBADD = $(DLOPEN_LIBS)
|