1998-01-30 00:31:24 +08:00
|
|
|
# Top-level distributed Makefile -*- makefile -*-
|
|
|
|
|
2007-02-15 06:25:02 +08:00
|
|
|
# Copyright by The HDF Group.
|
2005-10-12 05:13:42 +08:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
|
|
# terms governing use, modification, and redistribution, is contained in
|
2024-10-19 12:13:04 +08:00
|
|
|
# the LICENSE file, which can be found at the root of the source code
|
2021-02-17 22:52:36 +08:00
|
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
2017-04-18 03:32:16 +08:00
|
|
|
# If you do not have access to either file, you may request a copy from
|
|
|
|
# help@hdfgroup.org.
|
2005-10-12 05:13:42 +08:00
|
|
|
|
1998-01-30 00:31:24 +08:00
|
|
|
# This Makefile is a stub (copied from Makefile.dist) which will run
|
|
|
|
# configure and then invoke the same target in the new Makefile created
|
|
|
|
# by configure.
|
|
|
|
|
|
|
|
# Uncomment this variable if your make(1) doesn't set it automatically.
|
|
|
|
#
|
|
|
|
#MAKE=make
|
|
|
|
|
|
|
|
|
|
|
|
SHELL=/bin/sh
|
|
|
|
|
1999-03-03 01:15:35 +08:00
|
|
|
all lib progs check test _test install uninstall dep depend: _config
|
1998-01-30 00:31:24 +08:00
|
|
|
$(MAKE) $@
|
|
|
|
|
1998-01-31 04:17:25 +08:00
|
|
|
clean mostlyclean distclean maintainer-clean TAGS: _config
|
1998-01-30 00:31:24 +08:00
|
|
|
$(MAKE) $@
|
|
|
|
|
1998-01-31 04:17:25 +08:00
|
|
|
_config:
|
1998-01-30 00:31:24 +08:00
|
|
|
sh configure
|
|
|
|
|
1998-01-31 05:51:02 +08:00
|
|
|
.PHONY: all lib progs test install uninstall dep depend clean mostlyclean \
|
1998-01-31 04:17:25 +08:00
|
|
|
distclean maintainer-clean _config
|