1 | # Copyright (C) 2006 International Business Machines. |
---|
2 | # All Rights Reserved. |
---|
3 | # This file is distributed under the Common Public License. |
---|
4 | |
---|
5 | ## $Id: configure.ac 217 2007-02-02 00:16:55Z andreasw $ |
---|
6 | |
---|
7 | # Author: Andreas Waechter IBM 2006-04-13 |
---|
8 | |
---|
9 | ############################################################################# |
---|
10 | # Names and other basic things # |
---|
11 | ############################################################################# |
---|
12 | |
---|
13 | AC_PREREQ(2.59) |
---|
14 | |
---|
15 | AC_INIT([ThirdPartyLapack],[0.0], |
---|
16 | [http://projects.coin-or.org/BuildTools/newticket]) |
---|
17 | |
---|
18 | AC_COPYRIGHT([ |
---|
19 | Copyright 2006 International Business Machines and others. |
---|
20 | All Rights Reserved. |
---|
21 | This file is part of the open source package Coin which is distributed |
---|
22 | under the Common Public License.]) |
---|
23 | |
---|
24 | # List one file in the package so that the configure script can test |
---|
25 | # whether the package is actually there |
---|
26 | AC_CONFIG_SRCDIR(LAPACK/SRC/dlarf.f) |
---|
27 | |
---|
28 | # Where should everything be installed by default? Here, we want it |
---|
29 | # to be installed directly in 'bin', 'lib', 'include' subdirectories |
---|
30 | # of the directory where configure is run. The default would be |
---|
31 | # /usr/local. |
---|
32 | AC_PREFIX_DEFAULT([`pwd`]) |
---|
33 | |
---|
34 | AC_COIN_PROJECTDIR_INIT |
---|
35 | |
---|
36 | ############################################################################# |
---|
37 | # Standard build tool stuff # |
---|
38 | ############################################################################# |
---|
39 | |
---|
40 | # Get the system type |
---|
41 | AC_CANONICAL_BUILD |
---|
42 | |
---|
43 | # Check if user wants to produce debugging code |
---|
44 | AC_COIN_DEBUG_COMPILE(Lapack) |
---|
45 | |
---|
46 | # Get the name of the Fortran compiler and appropriate compiler options |
---|
47 | AC_COIN_PROG_F77 |
---|
48 | |
---|
49 | # Initialize autotools |
---|
50 | AC_COIN_INIT_AUTO_TOOLS |
---|
51 | |
---|
52 | ############################################################################# |
---|
53 | # Create links to the required source files # |
---|
54 | ############################################################################# |
---|
55 | |
---|
56 | lapack_source_files='dgetf2.f dgetrf.f dgetrs.f dlae2.f dlaev2.f dlanst.f dlansy.f dlapy2.f dlarf.f dlarfb.f dlarfg.f dlarft.f dlartg.f dlascl.f dlaset.f dlasr.f dlasrt.f dlassq.f dlaswp.f dlatrd.f dorg2l.f dorg2r.f dorgql.f dorgqr.f dorgtr.f dpotf2.f dpotrf.f dpotrs.f dsteqr.f dsterf.f dsyev.f dsytd2.f dsytrd.f ieeeck.f ilaenv.f iparmq.f' |
---|
57 | for file in $lapack_source_files; do |
---|
58 | AC_CONFIG_LINKS($file:LAPACK/SRC/$file) |
---|
59 | done |
---|
60 | AC_CONFIG_LINKS(dlamch.f:LAPACK/INSTALL/dlamch.f) |
---|
61 | |
---|
62 | AC_CONFIG_FILES([Makefile]) |
---|
63 | |
---|
64 | AC_COIN_FINALIZE |
---|