mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-02-16 01:30:29 +01:00
Most of these drivers didn't work. ati was the only one that even came close. The igs, ipaq, itsy, pcmcia, savage, sis530, trident, trio, ts300, and vxworks directories have never built since modularisation, so clearly no one can miss them.
40 lines
571 B
Makefile
40 lines
571 B
Makefile
if KDRIVEVESA
|
|
VESA_SUBDIRS = vesa
|
|
endif
|
|
|
|
if BUILD_KDRIVEFBDEVLIB
|
|
FBDEV_SUBDIRS = fbdev
|
|
endif
|
|
|
|
if XFAKESERVER
|
|
XFAKE_SUBDIRS = fake
|
|
endif
|
|
|
|
if XSDLSERVER
|
|
XSDL_SUBDIRS = sdl
|
|
endif
|
|
|
|
if XEPHYR
|
|
XEPHYR_SUBDIRS = ephyr
|
|
endif
|
|
|
|
if KDRIVELINUX
|
|
LINUX_SUBDIRS = linux
|
|
endif
|
|
|
|
SERVER_SUBDIRS = \
|
|
$(XSDL_SUBDIRS) \
|
|
$(FBDEV_SUBDIRS) \
|
|
$(VESA_SUBDIRS) \
|
|
$(XEPHYR_SUBDIRS) \
|
|
$(XFAKE_SUBDIRS)
|
|
|
|
SUBDIRS = \
|
|
src \
|
|
$(LINUX_SUBDIRS) \
|
|
$(SERVER_SUBDIRS)
|
|
|
|
DIST_SUBDIRS = vesa fbdev sdl ephyr src linux fake
|
|
|
|
relink:
|
|
@for i in $(SERVER_SUBDIRS) ; do make -C $$i relink ; done
|