libaura is a LIBrary of Assorted Useful Reusable Abstractions. Notably, it provides dictionary and extensible buffer data types, memory management functions (wrappers to malloc() and free()), and filesystem predicates (is_file(), is_dir(), etc.)
18 lines
516 B
Makefile
18 lines
516 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2005/02/09 05:40:28 xtraeme Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
LIBAURA_BUILDLINK3_MK:= ${LIBAURA_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= libaura
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nlibaura}
|
|
BUILDLINK_PACKAGES+= libaura
|
|
|
|
.if !empty(LIBAURA_BUILDLINK3_MK:M+)
|
|
BUILDLINK_DEPENDS.libaura+= libaura>=2.0
|
|
BUILDLINK_PKGSRCDIR.libaura?= ../../devel/libaura
|
|
.endif # LIBAURA_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|