41 lines
1,015 B
Makefile
41 lines
1,015 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Establish Ada-capable compiler as a build dependency
|
|
# To change default compiler, define ADA_DEFAULT in make.conf to 5
|
|
# Note that gcc47-aux is being removed soon, so 47 is not a legal default
|
|
#
|
|
# Feature: ada
|
|
# Usage: USES=ada
|
|
# Valid ARGS: 49, 5, 6, run
|
|
#
|
|
# MAINTAINER: marino@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_ADA_MK)
|
|
_INCLUDE_USES_ADA_MK= yes
|
|
|
|
CC= ada
|
|
ADAXX= gcc5 # framework default
|
|
|
|
. if ${ada_ARGS:M49}
|
|
ADAXX= gcc
|
|
. elif ${ada_ARGS:M6}
|
|
ADAXX= gcc6
|
|
. elif defined(ADA_DEFAULT)
|
|
. if ${ADA_DEFAULT} == 49
|
|
ADAXX= gcc
|
|
. elif ${ADA_DEFAULT} == 6
|
|
ADAXX= gcc6
|
|
. endif
|
|
. endif
|
|
|
|
. if ${ada_ARGS:Mrun}
|
|
RUN_DEPENDS+= ${LOCALBASE}/${ADAXX}-aux/bin/ada:${PORTSDIR}/lang/${ADAXX}-aux
|
|
. endif
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/${ADAXX}-aux/bin/ada:${PORTSDIR}/lang/${ADAXX}-aux
|
|
MAKE_ENV+= PATH=${LOCALBASE}/${ADAXX}-aux/bin:${PATH} \
|
|
ADA_PROJECT_PATH=${LOCALBASE}/lib/gnat
|
|
CONFIGURE_ENV+= PATH=${LOCALBASE}/${ADAXX}-aux/bin:${PATH} \
|
|
ADA_PROJECT_PATH=${LOCALBASE}/lib/gnat
|
|
|
|
.endif
|