d07c430fe5
March 2008. Not vital, but the previous way does not scale well/at all.
21 lines
540 B
Makefile
21 lines
540 B
Makefile
# $NetBSD: bsd.check-vars.mk,v 1.7 2009/07/26 05:32:43 agc 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_CAN_CHECK_SHLIBS} == "yes"
|
|
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
|