blob: c88002ebe6dac56c77a6412b7e31ae1e62ba5782 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $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"
|