summaryrefslogtreecommitdiff
path: root/mk/check/bsd.check-vars.mk
blob: 703ea0b368b3d466cf161c81889fc5ed43976e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# $NetBSD: bsd.check-vars.mk,v 1.5 2008/03/09 13:47:08 joerg Exp $
#
# This Makefile fragment is included separately by bsd.pkg.mk and
# defines some variables which must be defined earlier than where
# bsd.check.mk is included.
#

CHECK_FILES_SUPPORTED?=		yes
CHECK_SHLIBS_SUPPORTED?=	yes

.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly"
USE_CHECK_SHLIBS_ELF?=		yes
.else
USE_CHECK_SHLIBS_ELF?=		no
.endif

USE_TOOLS+=	awk cat cmp diff echo find grep rm sed test touch true

.if !empty(USE_CHECK_SHLIBS_ELF:M[yY][eE][sS])
USE_TOOLS+=	readelf
.endif