xserver

xserver with xephyr scale patch
git clone https://git.neptards.moe/u3shit/xserver.git
Log | Files | Refs | README | LICENSE

Makefile.am (410B)


      1 noinst_LTLIBRARIES = libbus.la
      2 sdk_HEADERS = xf86Pci.h
      3 
      4 PCI_SOURCES =
      5 if XORG_BUS_PCI
      6 PCI_SOURCES += Pci.c Pci.h
      7 endif
      8 
      9 if XORG_BUS_BSDPCI
     10 PCI_SOURCES += bsd_pci.c
     11 endif
     12 
     13 if XORG_BUS_SPARC
     14 PLATFORM_SOURCES = Sbus.c
     15 sdk_HEADERS += xf86Sbus.h
     16 endif
     17 
     18 libbus_la_SOURCES = $(PCI_SOURCES) $(PLATFORM_SOURCES) nobus.c
     19 
     20 AM_CPPFLAGS = $(XORG_INCS)
     21 
     22 AM_CFLAGS = $(XORG_CFLAGS) $(DIX_CFLAGS)
     23 
     24 EXTRA_DIST = $(sdk_HEADERS)