1 # $NetBSD: Makefile,v 1.7 2020/07/23 09:09:13 tsutsui Exp $ 2 3 .include "../Makefile.common" 4 5 SUBDIR= xnest vfb 6 .if ${XSERVER_XFREE86} != "no" 7 SUBDIR+= xfree86 8 .endif 9 10 .if ${XSERVER_X68K} != "no" 11 SUBDIR+=netbsd/x68k 12 .endif 13 14 .if ${XSERVER_XSUN} != "no" || \ 15 ${XSERVER_XSUNMONO} != "no" || \ 16 ${XSERVER_XSUN24} != "no" 17 SUBDIR+=sun 18 .endif 19 20 .if 0 21 .if ${XSERVER_XALPHANETBSD} != "no" 22 SUBDIR+=netbsd/alpha 23 .endif 24 25 .if ${XSERVER_XAMIGA} != "no" 26 SUBDIR+=netbsd/amiga 27 .endif 28 29 .if ${XSERVER_XARM32VIDC} != "no" 30 SUBDIR+=netbsd/arm32vidc 31 .endif 32 33 .if ${XSERVER_XDECNETBSD} != "no" 34 SUBDIR+=netbsd/dec 35 .endif 36 37 .if ${XSERVER_XFREE86} != "no" 38 SUBDIR+=xfree86 39 .endif 40 41 .if ${XSERVER_XMAC68K} != "no" 42 SUBDIR+=netbsd/mac68k 43 .endif 44 45 .if ${XSERVER_XVFB} != "no" 46 SUBDIR+=vfb 47 .endif 48 .endif 49 50 .include <bsd.subdir.mk> 51