blob: 2e74fe95f7b684c335ce094e66655cbdc5c9e8b0 (
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
|
# $NetBSD: Makefile,v 1.5 2013/05/31 00:38:16 mrg Exp $
.include <bsd.own.mk>
LIB= Xau
.PATH: ${X11SRCDIR.${LIB}}
.PATH: ${X11SRCDIR.${LIB}}/man
.PATH: ${X11SRCDIR.${LIB}}/include/X11
SRCS= AuDispose.c AuFileName.c AuGetAddr.c AuGetBest.c AuLock.c \
AuRead.c AuUnlock.c AuWrite.c
INCS= Xauth.h
INCSDIR=${X11INCDIR}/X11
CPPFLAGS+= ${X11FLAGS.THREADLIB}
MAN= Xau.3
MLINKS= Xau.3 XauDisposeAuth.3 \
Xau.3 XauFileName.3 \
Xau.3 XauGetAuthByAddr.3 \
Xau.3 XauGetBestAuthByAddr.3 \
Xau.3 XauLockAuth.3 \
Xau.3 XauReadAuth.3 \
Xau.3 XauUnlockAuth.3 \
Xau.3 XauWriteAuth.3
PKGDIST= ${LIB}
# libXaw 1.0.7 has 'spec' subdir with docs, maybe install them?
.include <bsd.x11.mk>
.include <bsd.lib.mk>
|