blob: bcbf7630e6a254227ccf5ea7307ad8933ef46a8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# $NetBSD: Makefile,v 1.23 2004/09/20 02:08:58 dmcmahill Exp $
#
DISTNAME= fasthenry-3.0-12Nov96
PKGNAME= fasthenry-3.0.19961112
CATEGORIES= cad
MASTER_SITES= http://www.rle.mit.edu/cpg/codes/
EXTRACT_SUFX= .tar.Z
MAINTAINER= dmcmahill@NetBSD.org
HOMEPAGE= http://www.rle.mit.edu/cpg/research_codes.htm
COMMENT= Three-dimensional inductance extraction program
WRKSRC= ${WRKDIR}/fasthenry-3.0
USE_BUILDLINK3= yes
HAS_CONFIGURE= yes
CONFIGURE_SCRIPT= ./config
CONFIGURE_ARGS= default
.include "../../mk/bsd.prefs.mk"
.if (${MACHINE_ARCH} == "alpha")
#
# optimized libffm (free fast math library)
#>
. include "../../math/libffm/buildlink3.mk"
DEPENDS+= libffm-[0-9]*:../../math/libffm
LIBS= -L${LOCALBASE}/lib ${COMPILER_RPATH_FLAG}${LOCALBASE}/lib -lffm -lm
MAKE_ENV+= LIBS="${LIBS}"
.else
LIBS= -lm
MAKE_ENV+= LIBS="${LIBS}"
.endif
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32"
GCC_REQD+= 2.95.3
.endif
.include "../../mk/bsd.pkg.mk"
|