mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-09 07:32:32 +08:00
89fbe00dec
* commit '54957d37f5aa73912763dbb6e308555e863c43f4': Commit copyright header change for src/H5PLpkg.c which was added after running script to make changes. Add new files in release_docs to MANIFEST. Cimmit changes to Makefile.in(s) and H5PL.c that resulted from running autogen.sh. Merge pull request #407 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10_1 to hdf5_1_10_1 Change copyright headers to replace url referring to file to be removed and replace it with new url for COPYING file.
98 lines
3.4 KiB
Makefile
98 lines
3.4 KiB
Makefile
#
|
|
# Copyright by The HDF Group.
|
|
# Copyright by the Board of Trustees of the University of Illinois.
|
|
# All rights reserved.
|
|
#
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
# terms governing use, modification, and redistribution, is contained in
|
|
# the COPYING file, which can be found at the root of the source code
|
|
# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.
|
|
# If you do not have access to either file, you may request a copy from
|
|
# help@hdfgroup.org.
|
|
##
|
|
## Makefile.am
|
|
## Run automake to generate a Makefile.in from this file.
|
|
##
|
|
#
|
|
# HDF5 Library Examples Makefile(.in)
|
|
#
|
|
|
|
include $(top_srcdir)/config/commence.am
|
|
|
|
if BUILD_PARALLEL_CONDITIONAL
|
|
EXAMPLE_PROG_PARA =
|
|
endif
|
|
|
|
# Example directory
|
|
# Note: no '/' after DESTDIR. Explanation in commence.am
|
|
EXAMPLEDIR=${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl/c
|
|
EXAMPLETOPDIR=${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl
|
|
INSTALL_SCRIPT_FILES = run-hlc-ex.sh
|
|
INSTALL_TOP_SCRIPT_FILES = run-hl-ex.sh
|
|
|
|
# Example programs.
|
|
# Don't tell automake about them, because if it knew they were programs,
|
|
# it would try to compile them instead of using the h5cc script.
|
|
# Use the boilerplate in config/examples.am instead.
|
|
EXAMPLE_PROG = ex_lite1 ex_lite2 ex_lite3 ptExampleFL \
|
|
ex_image1 ex_image2 \
|
|
ex_table_01 ex_table_02 ex_table_03 ex_table_04 \
|
|
ex_table_05 ex_table_06 ex_table_07 ex_table_08 \
|
|
ex_table_09 ex_table_10 ex_table_11 ex_table_12 \
|
|
ex_ds1
|
|
TEST_EXAMPLES_SCRIPT=$(INSTALL_SCRIPT_FILES)
|
|
|
|
# Install files
|
|
# List all file that should be installed in examples directory
|
|
INSTALL_FILES = ex_lite1.c ex_lite2.c ex_lite3.c ptExampleFL.c \
|
|
ex_image1.c ex_image2.c \
|
|
ex_table_01.c ex_table_02.c ex_table_03.c ex_table_04.c \
|
|
ex_table_05.c ex_table_06.c ex_table_07.c ex_table_08.c \
|
|
ex_table_09.c ex_table_10.c ex_table_11.c ex_table_12.c \
|
|
ex_ds1.c image24pixel.txt image8.txt pal_rgb.h
|
|
|
|
|
|
# Additional dependencies for each program are listed below.
|
|
if BUILD_PARALLEL_CONDITIONAL
|
|
$(EXTRA_PROG): $(H5CC_PP)
|
|
$(H5CC_PP) $(H5CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c;
|
|
else
|
|
$(EXTRA_PROG): $(H5CC)
|
|
$(H5CC) $(H5CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c;
|
|
endif
|
|
|
|
# ex_lite2 uses a file created by ex_lite1
|
|
ex_lite2.chkexe_: ex_lite1.chkexe_
|
|
|
|
# List dependencies for each program. Normally, automake would take
|
|
# care of this for us, but if we tell automake about the programs it
|
|
# will try to build them with the normal C compiler, not h5cc. This is
|
|
# an inelegant way of solving the problem.
|
|
# All programs share the same build rule and a dependency on the main hdf5
|
|
# library above.
|
|
ex_lite1: $(srcdir)/ex_lite1.c
|
|
ex_lite2: $(srcdir)/ex_lite2.c
|
|
ex_lite3: $(srcdir)/ex_lite3.c
|
|
ptExampleFL: $(srcdir)/ptExampleFL.c
|
|
ex_image1: $(srcdir)/ex_image1.c
|
|
ex_image2: $(srcdir)/ex_image2.c
|
|
ex_table01: $(srcdir)/ex_table01.c
|
|
ex_table02: $(srcdir)/ex_table02.c
|
|
ex_table03: $(srcdir)/ex_table03.c
|
|
ex_table04: $(srcdir)/ex_table04.c
|
|
ex_table05: $(srcdir)/ex_table05.c
|
|
ex_table06: $(srcdir)/ex_table06.c
|
|
ex_table07: $(srcdir)/ex_table07.c
|
|
ex_table08: $(srcdir)/ex_table08.c
|
|
ex_table09: $(srcdir)/ex_table09.c
|
|
ex_table10: $(srcdir)/ex_table10.c
|
|
ex_table11: $(srcdir)/ex_table11.c
|
|
ex_table12: $(srcdir)/ex_table12.c
|
|
|
|
if BUILD_SHARED_SZIP_CONDITIONAL
|
|
LD_LIBRARY_PATH=$(LL_PATH)
|
|
endif
|
|
|
|
include $(top_srcdir)/config/examples.am
|
|
include $(top_srcdir)/config/conclude.am
|