source: TRACY3/trunk/tracy/configure.in @ 11

Last change on this file since 11 was 3, checked in by zhangj, 12 years ago

Initiale import

  • Property svn:executable set to *
File size: 769 bytes
Line 
1# Process this file with autoconf to produce a configure script.
2AC_INIT(tracy/src/t2elem.cc)
3AC_CONFIG_AUX_DIR(config)
4AM_INIT_AUTOMAKE(Tracy, 3.5)
5AM_CONFIG_HEADER(config.h)
6# Checks for programs.
7AC_PROG_AWK
8# Check for compiler in this order
9# icc is on the Cluster
10# gcc otherwise MAC, Linux
11AC_PROG_CC([icc gcc])
12AM_PROG_CC_STDC
13AC_PROG_INSTALL
14AC_PROG_LN_S
15AC_PROG_CPP
16AC_PROG_RANLIB
17AC_PROG_CXX(gcc)
18AM_PROG_CC_C_O
19AC_PROG_F77(gfortran)
20
21# Checks for libraries.
22
23# Checks for header files.
24AC_CHECK_HEADERS([stdlib.h string.h])
25
26# Checks for typedefs, structures, and compiler characteristics.
27AC_C_CONST
28AC_C_INLINE
29AC_TYPE_SIZE_T
30
31# Checks for library functions.
32AC_OUTPUT(Makefile
33          TPSA/Makefile
34          tracy/Makefile tracy/src/Makefile tools/Makefile)
Note: See TracBrowser for help on using the repository browser.