mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
#
|
|
# Copyright by The HDF Group.
|
|
# 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 LICENSE file, which can be found at the root of the source code
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
|
# If you do not have access to either file, you may request a copy from
|
|
# help@hdfgroup.org.
|
|
#
|
|
#
|
|
# This makefile mostly just reinvokes make in the various subdirectories
|
|
# but does so in the correct order. You can alternatively invoke make from
|
|
# each subdirectory manually.
|
|
##
|
|
## Makefile.am
|
|
## Run automake to generate a Makefile.in from this file.
|
|
##
|
|
#
|
|
# HDF5 High-Level Makefile(.in)
|
|
|
|
include $(top_srcdir)/config/commence.am
|
|
|
|
## Automake will automatically recurse into fortran directory for distclean
|
|
## if we define it conditionally.
|
|
if BUILD_FORTRAN_CONDITIONAL
|
|
FORTRAN_DIR = fortran
|
|
endif
|
|
if BUILD_CXX_CONDITIONAL
|
|
CXX_DIR = c++
|
|
endif
|
|
if BUILD_TESTS_CONDITIONAL
|
|
TEST_DIR = test
|
|
else
|
|
TEST_DIR =
|
|
endif
|
|
if BUILD_TOOLS_CONDITIONAL
|
|
TOOLS_DIR = tools
|
|
else
|
|
TOOLS_DIR =
|
|
endif
|
|
|
|
## Don't recurse into any subdirectories if HDF5 is not configured to
|
|
## use the HL library
|
|
if BUILD_HDF5_HL_CONDITIONAL
|
|
SUBDIRS=src $(TEST_DIR) $(TOOLS_DIR) $(CXX_DIR) $(FORTRAN_DIR)
|
|
endif
|
|
DIST_SUBDIRS=src test tools c++ fortran
|
|
|
|
build-check-clean:
|
|
|
|
include $(top_srcdir)/config/conclude.am
|