blob: 14d84b1b51fe4dc2b9c289e3858bf50080e22898 (
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
47
48
49
50
51
52
53
54
55
|
# $NetBSD: Makefile,v 1.13 2004/10/07 13:47:13 rtr Exp $
.include <bsd.own.mk>
.include "Makefile.common"
.if ${XSERVER_NEEDS_XFONT} != "no"
SUBDIR.xfont=fontbase Xfont
.else
SUBDIR.xfont=
.endif
.if ${XSERVER_NEEDS_MIEXT} != "no"
SUBDIR.miext=miext
.else
SUBDIR.miext=
.endif
.if ${XSERVER_HAS_CFB} != "no"
SUBDIR.cfb=cfb cfb16 cfb24 cfb32
.else
SUBDIR.cfb=
.endif
.if ${XSERVER_HAS_FB} != "no"
SUBDIR.fb=fb
.else
SUBDIR.fb=
.endif
.if ${XSERVER_HAS_AFB} != "no"
SUBDIR.afb=afb
.else
SUBDIR.afb=
.endif
.if ${XSERVER_HAS_IPLAN} != "no"
SUBDIR.iplan=iplan2p4 iplan2p8
.else
SUBDIR.iplan=
.endif
SUBDIR= include
SUBDIR+= .WAIT dix os mi printer Xext xkb xinput GL lbx dbe record
SUBDIR+= mfb randr render xtrap
SUBDIR+= ${SUBDIR.cfb} ${SUBDIR.fb} ${SUBDIR.iplan} hw
SUBDIR+= ${SUBDIR.xfont} ${SUBDIR.afb} ${SUBDIR.miext}
SUBDIR+= .WAIT Xserver
.PATH: ${X11SRCDIR.xc}/programs/Xserver
MAN= Xserver.1
.include <bsd.x11.mk>
.include <bsd.man.mk>
.include <bsd.subdir.mk>
|