blob: 5f9e38d35a72153753bbe0a4f7245be820fabda4 (
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
|
# $NetBSD: Makefile,v 1.10 2004/01/10 23:35:55 lukem Exp $
.include <bsd.own.mk>
.include "Makefile.common"
.if ${XSERVER_NEEDS_XFONT} != "no"
SUBDIR.xfont=fontbase Xfont
.endif
.if ${XSERVER_HAS_CFB} == "no"
SUBDIR.cfb=
.else
SUBDIR.cfb=cfb cfb16 cfb24 cfb32
.endif
.if ${XSERVER_HAS_FB} == "no"
SUBDIR.fb=
.else
SUBDIR.fb=fb
.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} hw ${SUBDIR.xfont} .WAIT Xserver
XTODO= afb miext/shadow miext/layer
.PATH: ${X11SRCDIR.xc}/programs/Xserver
MAN= Xserver.1
.include <bsd.x11.mk>
.include <bsd.man.mk>
.include <bsd.subdir.mk>
|