-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 0 | ||||
-rw-r--r-- | NEWS | 0 | ||||
-rwxr-xr-x | autogen.sh | 4 | ||||
-rw-r--r-- | configure.ac | 27 |
6 files changed, 33 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b25c15b --- a/dev/null +++ b/.gitignore | |||
@@ -0,0 +1 @@ | |||
*~ | |||
@@ -0,0 +1 @@ | |||
Don Pellegrino, Drexel University, don@drexel.edu \ No newline at end of file | |||
diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..e69de29 --- a/dev/null +++ b/ChangeLog | |||
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..c7c8611 --- a/dev/null +++ b/autogen.sh | |||
@@ -0,0 +1,4 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | automake --add-missing | ||
4 | autoreconf | ||
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..3104df8 --- a/dev/null +++ b/configure.ac | |||
@@ -0,0 +1,27 @@ | |||
1 | AC_INIT([exp007], [0.1], [don@drexel.edu]) | ||
2 | AM_INIT_AUTOMAKE([-Wall, -Werror, -Wno-portability]) | ||
3 | AC_PROG_CC | ||
4 | AM_CONFIG_HEADER([config.h]) | ||
5 | AC_CONFIG_FILES([ | ||
6 | Makefile | ||
7 | src/Makefile | ||
8 | ]) | ||
9 | |||
10 | ################ | ||
11 | # MODULE: HDF5 # | ||
12 | ################ | ||
13 | |||
14 | AC_SEARCH_LIBS([H5Fcreate],[hdf5],[], | ||
15 | [AC_MSG_ERROR(The HDF5 libraries are needed to build the system.)]) | ||
16 | |||
17 | AC_SEARCH_LIBS([H5TBmake_table],[hdf5_hl],[], | ||
18 | [AC_MSG_ERROR(The HDF5 libraries are needed to build the system.)], | ||
19 | [-lhdf5]) | ||
20 | |||
21 | AC_CHECK_HEADERS([mpi.h],[], | ||
22 | [AC_MSG_ERROR(The MPI headers are needed to build the system.)]) | ||
23 | |||
24 | AC_CHECK_HEADERS([hdf5.h],[], | ||
25 | [AC_MSG_ERROR(The HDF5 headers are needed to build the system.)]) | ||
26 | |||
27 | AC_OUTPUT | ||