xserver

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

Makefile.am (575B)


      1 noinst_LTLIBRARIES = libxf86config.la
      2 
      3 INTERNAL_SOURCES= \
      4 	Device.c \
      5 	Files.c \
      6 	Flags.c \
      7 	Input.c \
      8 	InputClass.c \
      9 	OutputClass.c \
     10 	Layout.c \
     11 	Module.c \
     12 	Video.c \
     13 	Monitor.c \
     14 	Pointer.c \
     15 	Screen.c \
     16 	Vendor.c \
     17 	read.c \
     18 	scan.c \
     19 	write.c \
     20 	DRI.c \
     21 	Extensions.c
     22 
     23 libxf86config_la_SOURCES = \
     24 	$(INTERNAL_SOURCES)
     25 
     26 AM_CFLAGS = $(DIX_CFLAGS) $(XORG_CFLAGS) \
     27 	-DDATADIR=\"$(datadir)\"
     28 
     29 EXTRA_DIST = \
     30 	Configint.h \
     31 	configProcs.h \
     32 	xf86Optrec.h \
     33 	xf86Parser.h \
     34 	xf86tokens.h
     35 
     36 sdk_HEADERS = \
     37 	xf86Parser.h \
     38 	xf86Optrec.h
     39 
     40 AM_CPPFLAGS = -I$(srcdir)/../common