2005-02-12 01:40:52 +08:00
|
|
|
## config/commence.am
|
2007-02-21 23:43:35 +08:00
|
|
|
## (Use double hashes for copyright notice so that automake treats it as
|
|
|
|
## comments and does not pass it to Makefile.in)
|
|
|
|
## Copyright by The HDF Group.
|
|
|
|
## Copyright by the Board of Trustees of the University of Illinois.
|
|
|
|
## All rights reserved.
|
2005-10-21 22:54:41 +08:00
|
|
|
##
|
2007-02-21 23:43:35 +08:00
|
|
|
## This file is part of HDF5. The full HDF5 copyright notice, including
|
|
|
|
## terms governing use, modification, and redistribution, is contained in
|
|
|
|
## the files COPYING and Copyright.html. COPYING can be found at the root
|
|
|
|
## of the source code distribution tree; Copyright.html can be found at the
|
|
|
|
## root level of an installed copy of the electronic HDF5 document set and
|
|
|
|
## is linked from the top-level documents page. It can also be found at
|
|
|
|
## http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
|
|
|
|
## access to either file, you may request a copy from help@hdfgroup.org.
|
2005-10-21 22:54:41 +08:00
|
|
|
|
|
|
|
|
2005-02-12 01:40:52 +08:00
|
|
|
## Textually included in the beginning of every HDF5 Makefile.am
|
|
|
|
## Contains definitions, etc. used across multiple Makefiles.
|
2005-02-01 11:17:02 +08:00
|
|
|
|
|
|
|
# Shell commands used in Makefiles
|
|
|
|
RM=rm -f
|
|
|
|
CP=cp
|
|
|
|
|
2005-04-01 02:26:17 +08:00
|
|
|
# Some machines need a command to run executables; this is that command
|
|
|
|
# so that our tests will run.
|
|
|
|
# We use RUNTESTS instead of RUNSERIAL directly because it may be that
|
|
|
|
# some tests need to be run with a different command. Older versions
|
|
|
|
# of the makefiles used the command
|
|
|
|
# $(LIBTOOL) --mode=execute
|
|
|
|
# in some directories, for instance.
|
|
|
|
RUNTESTS=$(RUNSERIAL)
|
|
|
|
|
2005-02-01 11:17:02 +08:00
|
|
|
# Libraries to link to while building
|
|
|
|
LIBHDF5=$(top_builddir)/src/libhdf5.la
|
|
|
|
LIBH5TEST=$(top_builddir)/test/libh5test.la
|
|
|
|
LIBH5F=$(top_builddir)/fortran/src/libhdf5_fortran.la
|
|
|
|
LIBH5FTEST=$(top_builddir)/fortran/test/libh5test_fortran.la
|
|
|
|
LIBH5CPP=$(top_builddir)/c++/src/libhdf5_cpp.la
|
|
|
|
LIBH5TOOLS=$(top_builddir)/tools/lib/libh5tools.la
|
|
|
|
LIBH5_HL=$(top_builddir)/hl/src/libhdf5_hl.la
|
|
|
|
LIBH5F_HL=$(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la
|
2005-03-29 00:32:20 +08:00
|
|
|
LIBH5CPP_HL=$(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la
|
2005-02-01 11:17:02 +08:00
|
|
|
|
|
|
|
# Install directories that automake doesn't know about
|
|
|
|
docdir = $(exec_prefix)/doc
|
|
|
|
|
|
|
|
# Scripts used to build examples
|
[svn-r11646] Purpose:
Bug fix/feature
Description:
Added support for -shlib in h5fc and h5c++.
Made check-install use -shlib when only shared libraries have been installed.
Solution:
h5fc and h5c++ didn't recognize -shlib. Stole code from h5cc to link against
shared libraries.
When static libraries are disabled, the examples Makefiles will automatically
use the -shlib option to link against shared libraries. Thus,
--disable-static and make check-install should work together.
Platforms tested:
heping(disable-static, enable-static, fortran, c++), modi4 (disable-static, fortran, c++, parallel, enable-static)
2005-11-01 05:35:49 +08:00
|
|
|
# If only shared libraries have been installed, have h5cc build examples with
|
|
|
|
# shared libraries instead of static libraries
|
2007-02-21 07:39:44 +08:00
|
|
|
H5CC=$(bindir)/h5cc
|
|
|
|
H5CC_PP=$(bindir)/h5pcc
|
|
|
|
H5FC=$(bindir)/h5fc
|
|
|
|
H5FC_PP=$(bindir)/h5pfc
|
|
|
|
H5CPP=$(bindir)/h5c++
|
[svn-r11646] Purpose:
Bug fix/feature
Description:
Added support for -shlib in h5fc and h5c++.
Made check-install use -shlib when only shared libraries have been installed.
Solution:
h5fc and h5c++ didn't recognize -shlib. Stole code from h5cc to link against
shared libraries.
When static libraries are disabled, the examples Makefiles will automatically
use the -shlib option to link against shared libraries. Thus,
--disable-static and make check-install should work together.
Platforms tested:
heping(disable-static, enable-static, fortran, c++), modi4 (disable-static, fortran, c++, parallel, enable-static)
2005-11-01 05:35:49 +08:00
|
|
|
|
2005-02-01 11:17:02 +08:00
|
|
|
|
2005-09-17 05:26:17 +08:00
|
|
|
# H5_CFLAGS holds flags that should be used as CFLAGS when building hdf5,
|
|
|
|
# but which shouldn't be exported to h5cc for building other programs.
|
2006-06-22 07:15:08 +08:00
|
|
|
|
2005-09-17 05:26:17 +08:00
|
|
|
CFLAGS=@CFLAGS@ @H5_CFLAGS@
|
|
|
|
CPPFLAGS=@CPPFLAGS@ @H5_CPPFLAGS@
|
2006-04-22 03:21:24 +08:00
|
|
|
FCFLAGS=@FCFLAGS@ @H5_FCFLAGS@
|
2005-09-17 05:26:17 +08:00
|
|
|
CXXFLAGS=@CXXFLAGS@ @H5_CXXFLAGS@
|
|
|
|
|
2005-11-18 23:55:22 +08:00
|
|
|
# The trace script; this is used on source files from the C library to
|
|
|
|
# insert tracing macros.
|
|
|
|
TRACE=perl $(top_srcdir)/bin/trace
|
|
|
|
|
2005-02-01 11:17:02 +08:00
|
|
|
# Make sure that these variables are exported to the Makefiles
|
|
|
|
F9XMODEXT=@F9XMODEXT@
|
2005-02-01 23:27:37 +08:00
|
|
|
F9XMODFLAG=@F9XMODFLAG@
|
2005-02-01 11:17:02 +08:00
|
|
|
|
2005-04-01 02:26:17 +08:00
|
|
|
# Set the paths for AFS installs of autotools for Linux machines
|
2005-02-03 00:00:36 +08:00
|
|
|
# Ideally, these tools should never be needed during the build.
|
2007-02-28 01:26:25 +08:00
|
|
|
AUTOCONF=/home1/packages/autoconf/autoconf-2.60/bin/autoconf
|
|
|
|
AUTOMAKE=/home1/packages/automake/automake-1.9.6/bin/automake-1.9
|
|
|
|
AUTOHEADER=/home1/packages/autoconf/autoconf-2.60/bin/autoheader
|
|
|
|
ACLOCAL=/home1/packages/automake/automake-1.9.6/bin/aclocal-1.9 -I /afs/ncsa/projects/hdf/packages/libtool_1.5.14/Linux_2.4/share/aclocal
|
2005-04-01 02:26:17 +08:00
|
|
|
|
2005-08-27 06:24:27 +08:00
|
|
|
# .chkexe files are used to mark tests that have run successfully.
|
|
|
|
# .chklog files are output from those tests.
|
2005-09-01 04:03:52 +08:00
|
|
|
# *.clog are from the MPE option.
|
|
|
|
CHECK_CLEANFILES=*.chkexe *.chklog *.clog
|
2005-08-02 06:22:55 +08:00
|
|
|
|
[svn-r11737] Purpose:
Bug fix
Description:
Before this checkin, 'gmake check-s' would fail if there was a file in
the current directory named 'check-s'.
This is fixed under gmake (not sure how to fix for other makes).
Solution:
check, progs, install, etc. are what gmake calls "phony" targets,
which means that no file should be created. These targets can be
specified by a line of the form
.PHONY: check progs install ...
Automake adds this line for targets it knows about, but HDF5 has a
lot of custom rules. This checkin adds a .PHONY line for those rules.
I believe that only gmake recognizes the .PHONY line (at least, pmake
doesn't seem to), but a partial solution is better than none.
This error should occur very rarely anyway (the user has to manually
create files with names like 'build-check-s' or '_test').
Platforms tested:
mir, sleipnir, modi4
2005-11-18 02:49:28 +08:00
|
|
|
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
|
|
|
|
# This tells the Makefiles that these targets are not files to be built but
|
|
|
|
# commands that should be executed even if a file with the same name already
|
|
|
|
# exists.
|
|
|
|
.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
|
|
|
|
build-tests check-clean check-install check-p check-s check-vfd \
|
2007-02-24 03:14:11 +08:00
|
|
|
install-doc lib progs tests uninstall-doc _exec_check-s _test help
|
|
|
|
|
|
|
|
help:
|
|
|
|
@$(top_srcdir)/bin/makehelp
|
[svn-r11737] Purpose:
Bug fix
Description:
Before this checkin, 'gmake check-s' would fail if there was a file in
the current directory named 'check-s'.
This is fixed under gmake (not sure how to fix for other makes).
Solution:
check, progs, install, etc. are what gmake calls "phony" targets,
which means that no file should be created. These targets can be
specified by a line of the form
.PHONY: check progs install ...
Automake adds this line for targets it knows about, but HDF5 has a
lot of custom rules. This checkin adds a .PHONY line for those rules.
I believe that only gmake recognizes the .PHONY line (at least, pmake
doesn't seem to), but a partial solution is better than none.
This error should occur very rarely anyway (the user has to manually
create files with names like 'build-check-s' or '_test').
Platforms tested:
mir, sleipnir, modi4
2005-11-18 02:49:28 +08:00
|
|
|
|