blob: bb111e6a036e4fb2ebf38aeae03782d6aa38d5bb (
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
|
# $NetBSD: Makefile,v 1.2 2008/09/13 04:32:30 cube Exp $
.include <bsd.own.mk>
LIB= Xfontcache
.PATH: ${X11SRCDIR.${LIB}}/src
.PATH: ${X11SRCDIR.${LIB}}/man
LIBDPLIBS=\
Xext ${.CURDIR}/../libXext \
X11 ${.CURDIR}/../libX11/dynamic
SRCS= FontCache.c
MAN= Xfontcache.3
MLINKS= Xfontcache.3 FontCacheChangeCacheSettings.3 \
Xfontcache.3 FontCacheGetCacheSettings.3 \
Xfontcache.3 FontCacheGetCacheStatistics.3 \
Xfontcache.3 FontCacheQueryExtension.3 \
Xfontcache.3 FontCacheQueryVersion.3
#CPPFLAGS+= ${X11FLAGS.THREADS}
PKGDIST= ${LIB}
.include <bsd.x11.mk>
.include <bsd.lib.mk>
|