xserver

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

Makefile.am (489B)


      1 noinst_LTLIBRARIES = librandr.la
      2 
      3 AM_CFLAGS = $(DIX_CFLAGS)
      4 
      5 XINERAMA_SRCS = rrxinerama.c
      6 
      7 if XORG
      8 sdk_HEADERS = randrstr.h rrtransform.h
      9 endif
     10 
     11 librandr_la_SOURCES =	\
     12 	randr.c		\
     13 	randrstr.h	\
     14 	rrcrtc.c	\
     15 	rrdispatch.c	\
     16 	rrinfo.c	\
     17 	rrlease.c	\
     18 	rrmode.c	\
     19 	rrmonitor.c	\
     20 	rroutput.c	\
     21 	rrpointer.c	\
     22 	rrproperty.c	\
     23 	rrprovider.c    \
     24 	rrproviderproperty.c    \
     25 	rrscreen.c	\
     26 	rrsdispatch.c	\
     27 	rrtransform.h	\
     28 	rrtransform.c
     29 
     30 if XINERAMA
     31 librandr_la_SOURCES += ${XINERAMA_SRCS}
     32 endif
     33