diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-29 16:31:24 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-29 16:31:24 (GMT) |
commit | 5761b90f63b5f3d69e914cfbe7a4619cce9bfc4b (patch) | |
tree | 2bc94a947962c448f2d70f8489e054c478d69819 /Makefile.dist | |
parent | cf52ce8fc45d7010e6fc21dbdee5d5b2e33dc2ce (diff) | |
download | hdf5-5761b90f63b5f3d69e914cfbe7a4619cce9bfc4b.zip hdf5-5761b90f63b5f3d69e914cfbe7a4619cce9bfc4b.tar.gz hdf5-5761b90f63b5f3d69e914cfbe7a4619cce9bfc4b.tar.bz2 |
[svn-r196] Changes since 19980128
----------------------
./MANIFEST
Added new files.
./bin/Makefile.dist [NEW]
This file becomes the default top-level Makefile which invokes
configure with no arguments and then re-runs make. It's for
those people that don't read the INSTALL file.
./bin/release [NEW]
Build HDF release tarballs. Arguments are a list of tarball
types and are: tar, compress, gzip, or bzip2. The default is
gzip. If the only argument is `all' then all types of tarballs
are created. The results are put in the `releases' directory.
Make sure you keep MANIFEST up to date. This program requires
perl-5.003 or better.
./src/H5AC.c
Fixed a printf format.
Diffstat (limited to 'Makefile.dist')
-rw-r--r-- | Makefile.dist | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Makefile.dist b/Makefile.dist new file mode 100644 index 0000000..e2145ee --- /dev/null +++ b/Makefile.dist @@ -0,0 +1,24 @@ +# Top-level distributed Makefile -*- makefile -*- + +# 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 + +all lib progs test install uninstall dep depend clean mostlyclean: config + $(MAKE) $@ + +distclean maintainer-clean TAGS: config + $(MAKE) $@ + +config: + sh configure + +.PHONY: all lib progs test install uninstall dep depend clean mostlyclean \ + distclean maintainer-clean config |