create bsd12 branch

This commit is contained in:
ziggi
2019-12-26 07:26:06 +00:00
commit 5cfdab6bfe
14432 changed files with 2272620 additions and 0 deletions

21
Mk/Uses/gmake.mk Normal file
View File

@@ -0,0 +1,21 @@
# $FreeBSD: head/Mk/Uses/gmake.mk 418216 2016-07-08 11:24:18Z tijl $
#
# Provide support to use the GNU make
#
# Feature: gmake
# Usage: USES=gmake
#
# MAINTAINER: portmgr@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:devel/gmake
CONFIGURE_ENV+= MAKE=gmake
MAKE_CMD= gmake
.endif