artificial neural networks in C with support for both fully connected and sparsely connected networks. Cross-platform execution in both fixed and floating point are supported. It includes a framework for easy handling of training data sets. It is easy to use, versatile, well documented, and fast. Bindings to other programming languages and a GUI are also available. This is a CVS snapshot.
19 lines
554 B
Makefile
19 lines
554 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2006/10/12 18:30:22 gdt Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
FANN_BUILDLINK3_MK:= ${FANN_BUILDLINK3_MK}+
|
|
|
|
.if ${BUILDLINK_DEPTH} == "+"
|
|
BUILDLINK_DEPENDS+= fann
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nfann}
|
|
BUILDLINK_PACKAGES+= fann
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}fann
|
|
|
|
.if ${FANN_BUILDLINK3_MK} == "+"
|
|
BUILDLINK_API_DEPENDS.fann+= fann>=2.1.0.20061012
|
|
BUILDLINK_PKGSRCDIR.fann?= ../../devel/fann-devel
|
|
.endif # FANN_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|