194d7cfc85
The LIBMAA library provides many low-level data structures which are helpful for writing compilers, including hash tables, sets, lists, debugging support, and memory management. Although LIBMAA was designed and implemented as a foundation for the Khepera Transformation System, the data structures are generally applicable to a wide range of programming problems. The memory management routines are especially helpful for improving the performance of memory-intensive applications.
19 lines
567 B
Makefile
19 lines
567 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2009/03/12 00:50:20 minskim Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
LIBMAA_BUILDLINK3_MK:= ${LIBMAA_BUILDLINK3_MK}+
|
|
|
|
.if ${BUILDLINK_DEPTH} == "+"
|
|
BUILDLINK_DEPENDS+= libmaa
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nlibmaa}
|
|
BUILDLINK_PACKAGES+= libmaa
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}libmaa
|
|
|
|
.if ${LIBMAA_BUILDLINK3_MK} == "+"
|
|
BUILDLINK_API_DEPENDS.libmaa+= libmaa>=0.990
|
|
BUILDLINK_PKGSRCDIR.libmaa?= ../../devel/libmaa
|
|
.endif # LIBMAA_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|