blob: 32c29af0c2abbabc48f667d8fb4dd4b2ccb37267 (
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
|
# $NetBSD: Makefile,v 1.4 2022/07/15 04:18:54 mrg Exp $
.include "../Makefile.serverlib"
.include "../Makefile.servermod"
LIB= config
.PATH: ${X11SRCDIR.xorg-server}/config
SRCS= config.c
SRCS+= wscons.c
CPPFLAGS+= ${X11FLAGS.DIX}
CPPFLAGS+= -I${X11SRCDIR.xorg-server}/include \
-I${X11SRCDIR.xorg-server}/Xext \
-I${DESTDIR}${X11INCDIR}/X11 \
-I${DESTDIR}${X11INCDIR}/xorg \
-I${DESTDIR}${X11INCDIR}/pixman-1 \
-I${X11SRCDIR.xorg-server}/../include
CPPFLAGS+= -DCONFIG_WSCONS
CPPFLAGS+= -Wno-error=deprecated-declarations
.include <bsd.x11.mk>
.include <bsd.lib.mk>
|