f4666cfbc5
- conditionalise more of the main subdirs based on XSERVER_XXX variables, and set these as necessary in Makefile.common XXX: perhaps list the Xwhat -> X symlink name in Makefile.common?
36 lines
696 B
Makefile
36 lines
696 B
Makefile
# $NetBSD: Makefile,v 1.9 2004/01/06 12:30:13 mrg 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 hw/xfree86
|
|
|
|
.PATH: ${X11SRCDIR.xc}/programs/Xserver
|
|
MAN= Xserver.1
|
|
|
|
.include <bsd.x11.mk>
|
|
.include <bsd.man.mk>
|
|
.include <bsd.subdir.mk>
|