blob: 27bbd88b6f917a14460b5f1d18d6613e7ffbad39 (
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
|
# $NetBSD: Makefile,v 1.2 2022/10/29 21:06:15 mrg Exp $
.include <bsd.own.mk>
LIB= Xpresent
.PATH: ${X11SRCDIR.${LIB}}/src
.PATH: ${X11SRCDIR.${LIB}}/man
.PATH: ${X11SRCDIR.${LIB}}/include/X11/extensions
SRCS= Xpresent.c
CPPFLAGS+= ${X11FLAGS.THREADLIB}
LIBDPLIBS=\
Xext ${.CURDIR}/../libXext \
Xrandr ${.CURDIR}/../libXrandr \
Xfixes ${.CURDIR}/../libXfixes \
X11 ${.CURDIR}/../libX11/dynamic
INCS= Xpresent.h
INCSDIR=${X11INCDIR}/X11/extensions
PKGDIST= ${LIB}
MAN= Xpresent.3 \
XPresentFreeInput.3 \
XPresentNotifyMSC.3 \
XPresentPixmap.3 \
XPresentQueryCapabilities.3 \
XPresentQueryExtension.3 \
XPresentQueryVersion.3 \
XPresentSelectInput.3 \
XPresentVersion.3
.include <bsd.x11.mk>
.include <bsd.lib.mk>
|