associated with an operating system than with a programming language: concurrent processes, scheduling, memory management, distribution, networking, etc. The initial open-source Erlang release contains the implementation of Erlang, as well as a large part of Ericsson's middleware for building distributed high-availability systems.
20 lines
623 B
Makefile
20 lines
623 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2008/04/16 06:11:50 marttikuparinen Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
ERLANG_BUILDLINK3_MK:= ${ERLANG_BUILDLINK3_MK}+
|
|
|
|
.if ${BUILDLINK_DEPTH} == "+"
|
|
BUILDLINK_DEPENDS+= erlang
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nerlang}
|
|
BUILDLINK_PACKAGES+= erlang
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}erlang
|
|
|
|
.if ${ERLANG_BUILDLINK3_MK} == "+"
|
|
BUILDLINK_API_DEPENDS.erlang+= erlang>=10.1
|
|
BUILDLINK_ABI_DEPENDS.erlang?= erlang>=10.1.9nb1
|
|
BUILDLINK_PKGSRCDIR.erlang?= ../../lang/erlang
|
|
.endif # ERLANG_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|