-
Notifications
You must be signed in to change notification settings - Fork 4
/
configure.ac
60 lines (44 loc) · 1.84 KB
/
configure.ac
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#----------------------------------------------------------------
#
# configure.ac
#
# Autoconf source file for Boundary Element MMTL (bem).
# This file, along with aclocal, autoconf, Makefile.am,
# and automake can produce a highly functional configuration
# script and Makefile.
#
# Sharon Zahn, Bob Techentin
# October 3, 2002
#
# Copyright 2002-2004 Mayo Foundation. All Rights Reserved
# $Id: configure.ac,v 1.11 2004/09/10 20:04:53 techenti Exp $
#
#----------------------------------------------------------------
#----------------------------------------------------------------
# Declare the package name and version.
# All the bouquets and brickbats go to Sharon. :-)
#----------------------------------------------------------------
AC_INIT([TNT MMTL],[1.2.2],[[email protected]])
#----------------------------------------------------------------
# Give autoconf a point of reference, and tell it that
# we're going to use automake later.
#----------------------------------------------------------------
AC_CONFIG_SRCDIR(tnt.tcl)
AM_INIT_AUTOMAKE
#----------------------------------------------------------------
# Check platform name so we can specify particular
# compilers and switches that we like. Not used
# at this level, but some subdirectories need this.
#----------------------------------------------------------------
AC_CANONICAL_HOST
#----------------------------------------------------------------
# On Windows using Cygwin
# Set a WINDOWS conditional for automake so
# that the makefile can install extra executables.
# (we just copy PrFile32.exe to ./bin)
#----------------------------------------------------------------
AM_CONDITIONAL(WINDOWS, [[[[ $host = *cygwin* ]]]] )
AC_CONFIG_SUBDIRS(bem calcCAP calcRL csdl gui units sppdgTcllib)
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([doc/Makefile])
AC_OUTPUT