xserver

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

Makefile.am (1204B)


      1 noinst_LTLIBRARIES = libbsd.la
      2 
      3 # No APM support.
      4 APM_SOURCES = $(srcdir)/../shared/pm_noop.c
      5 
      6 if FREEBSD_KLDLOAD
      7 KMOD_SOURCES = bsd_kmod.c
      8 else
      9 KMOD_SOURCES = $(srcdir)/../shared/kmod_noop.c
     10 endif
     11 
     12 if AGP
     13 AGP_SOURCES = $(srcdir)/../linux/lnx_agp.c
     14 else
     15 AGP_SOURCES = $(srcdir)/../shared/agp_noop.c
     16 endif
     17 
     18 if ALPHA_VIDEO
     19 # Cheat here and piggyback other alpha bits on ALPHA_VIDEO.
     20 ARCH_SOURCES = \
     21 	alpha_video.c
     22 endif
     23 
     24 if ARM_VIDEO
     25 ARCH_SOURCES = arm_video.c
     26 endif
     27 
     28 if I386_VIDEO
     29 ARCH_SOURCES = i386_video.c
     30 endif
     31 
     32 if PPC_VIDEO
     33 ARCH_SOURCES = ppc_video.c
     34 endif
     35 
     36 if SPARC64_VIDEO
     37 # Cheat here and piggyback other sparc64 bits on SPARC64_VIDEO.
     38 ARCH_SOURCES = \
     39 	sparc64_video.c \
     40 	$(srcdir)/../shared/ioperm_noop.c
     41 endif
     42 
     43 # FIXME: NetBSD Aperture defines (configure.ac)
     44 AM_CFLAGS = $(XORG_CFLAGS) $(DIX_CFLAGS)
     45 
     46 AM_CPPFLAGS = $(XORG_INCS)
     47 
     48 libbsd_la_SOURCES = \
     49 	$(srcdir)/../shared/posix_tty.c \
     50 	$(srcdir)/../shared/sigio.c \
     51 	$(srcdir)/../shared/vidmem.c \
     52 	bsd_VTsw.c \
     53 	bsd_init.c \
     54 	bsd_bell.c \
     55 	$(ARCH_SOURCES) \
     56 	$(AGP_SOURCES) \
     57 	$(APM_SOURCES) \
     58 	$(AXP_SOURCES) \
     59 	$(DRI_SOURCES) \
     60 	$(KMOD_SOURCES) \
     61 	$(RES_SOURCES)
     62 
     63 # FIXME: Add these files to the build as needed
     64 EXTRA_DIST = \
     65 	memrange.h