aboutsummaryrefslogtreecommitdiff
path: root/Mk/Uses/gmake.mk
blob: 50b9df2ecb3c1f7931e6c5e5fdc52e25f2a7647d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Provide support to use the GNU make
#
# Feature:		gmake
# Usage:		USES=gmake
#
# MAINTAINER: tijl@FreeBSD.org

.if !defined(_INCLUDE_USES_GMAKE_MK)
_INCLUDE_USES_GMAKE_MK=	yes

.if !empty(gmake_ARGS)
IGNORE=	Incorrect 'USES+= gmake:${gmake_ARGS}' gmake takes no arguments
.endif

BUILD_DEPENDS+=		gmake>=4.3:devel/gmake
CONFIGURE_ENV+=		MAKE=gmake
MAKE_CMD=		gmake

.endif