Last change
on this file since c9b32a was 464c6d, checked in by Frederik Heber <heber@…>, 17 years ago |
script files have paths (for bin programs used inside) now written into by automake
We use $prefix@ and alikes to put the correct path into it. Though, it's a bit of a pain as @bindir@ is not replaced with an absolute path but with ${exec_prefix}/bindir, which is not helping very much ... (exec_prefix=@prefix@ then helps)
|
-
Property mode
set to
100644
|
File size:
897 bytes
|
Line | |
---|
1 | # -*- Autoconf -*-
|
---|
2 | # Process this file with autoconf to produce a configure script.
|
---|
3 |
|
---|
4 | AC_PREREQ(2.59)
|
---|
5 | AC_INIT(PCP_Utilities, 1.0, heber@ins.uni-bonn.de)
|
---|
6 | AC_CONFIG_SRCDIR([CreateGaAs.c])
|
---|
7 | AC_CONFIG_HEADER([config.h])
|
---|
8 |
|
---|
9 | AM_INIT_AUTOMAKE
|
---|
10 |
|
---|
11 | # Checks for programs.
|
---|
12 | AC_PROG_AWK
|
---|
13 | AC_PROG_CXX
|
---|
14 | AC_PROG_CC
|
---|
15 | AM_MISSING_PROG([DOXYGEN], [doxygen])
|
---|
16 |
|
---|
17 | # Checks for libraries.
|
---|
18 | AC_CHECK_LIB(m, sqrt, ,AC_MSG_ERROR([compatible libc math library not found]))
|
---|
19 |
|
---|
20 | # Checks for header files.
|
---|
21 | AC_HEADER_STDC
|
---|
22 | AC_CHECK_HEADERS([stdlib.h string.h])
|
---|
23 |
|
---|
24 | # Checks for typedefs, structures, and compiler characteristics.
|
---|
25 | AC_C_CONST
|
---|
26 | AC_TYPE_SIZE_T
|
---|
27 |
|
---|
28 | # Checks for library functions.
|
---|
29 | AC_FUNC_MALLOC
|
---|
30 | AC_FUNC_REALLOC
|
---|
31 | AC_CHECK_FUNCS([pow sqrt strchr strrchr strstr])
|
---|
32 | AC_CONFIG_FILES([Makefile doc/Makefile])
|
---|
33 | AC_CONFIG_FILES([CreateFromXYZ.sh dynamicANOVA.sh Nanotubes.pl ReSequenceDX.pl])
|
---|
34 | AC_OUTPUT
|
---|
Note:
See
TracBrowser
for help on using the repository browser.