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