a2942f0f6a
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.
20 lines
430 B
Makefile
20 lines
430 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2006/10/12 18:30:22 gdt Exp $
|
|
|
|
.include "Makefile.common"
|
|
|
|
COMMENT= Fast Artificial Neural Network
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
PKGCONFIG_OVERRIDE+= fann.pc.in
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fann
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} doc/* ${PREFIX}/share/doc/fann)
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|