1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/Mk/Uses/ninja.mk
Gerald Pfeifer 5b4f2ad658 Move MAINTAINER lines to the end of the initial comment block and
make things a bit more consistent.

Approved by:	portmgr (bapt)
2014-03-15 10:31:54 +00:00

33 lines
549 B
Makefile

# $FreeBSD$
#
# Provide support to use Ninja
#
# Feature: ninja
# Usage: USES=ninja
#
# User defined variables:
# NINJA_VERBOSE - Enable verbose output.
#
# MAINTAINER: portmgr@FreeBSD.org
.if !defined(_INCLUDE_USES_NINJA_MK)
_INCLUDE_USES_NINJA_MK= yes
.if defined(ninja_ARGS)
IGNORE= Incorrect 'USES+= ninja:${ninja_ARGS}' ninja takes no arguments
.endif
.if defined(NINJA_VERBOSE)
MAKE_ARGS+= -v
.endif
BUILD_DEPENDS+= ninja:${PORTSDIR}/devel/ninja
CMAKE_ARGS+= -GNinja
MAKEFILE=
MAKE_CMD= ninja
MAKE_FLAGS=
_DESTDIR_VIA_ENV= yes
.endif