xserver

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

Makefile.am (503B)


      1 if XORG
      2 XORG_SUBDIRS = xfree86
      3 endif
      4 
      5 if XVFB
      6 XVFB_SUBDIRS = vfb
      7 endif
      8 
      9 if XNEST
     10 XNEST_SUBDIRS = xnest
     11 endif
     12 
     13 if XWIN
     14 XWIN_SUBDIRS = xwin
     15 endif
     16 
     17 if KDRIVE
     18 KDRIVE_SUBDIRS = kdrive
     19 endif
     20 
     21 if XQUARTZ
     22 XQUARTZ_SUBDIRS = xquartz
     23 endif
     24 
     25 SUBDIRS =			\
     26 	$(XORG_SUBDIRS)		\
     27 	$(XWIN_SUBDIRS)		\
     28 	$(XVFB_SUBDIRS)		\
     29 	$(XNEST_SUBDIRS)	\
     30 	$(KDRIVE_SUBDIRS)	\
     31 	$(XQUARTZ_SUBDIRS)
     32 
     33 DIST_SUBDIRS = xfree86 vfb xnest xwin xquartz kdrive
     34 
     35 relink:
     36 	$(AM_V_at)for i in $(SUBDIRS) ; do $(MAKE) -C $$i relink || exit 1 ; done