mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
687edfacdc
Some ports required patches. PR: 272216 Exp-run by: antoine
20 lines
381 B
Makefile
20 lines
381 B
Makefile
# 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.4.1:devel/gmake
|
|
CONFIGURE_ENV+= MAKE=gmake
|
|
MAKE_CMD= gmake
|
|
|
|
.endif
|