diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-06-18 18:29:11 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-06-18 18:29:11 (GMT) |
commit | ab16b9fab7c50577faf1f11574e04723ce6523c7 (patch) | |
tree | 9a363fe63aa4428ae7d3c4171cf5e6c5d83ee06c | |
parent | 8baa67525092387f0e5b8ce7e139a9a6849c2c63 (diff) | |
download | hdf5-ab16b9fab7c50577faf1f11574e04723ce6523c7.zip hdf5-ab16b9fab7c50577faf1f11574e04723ce6523c7.tar.gz hdf5-ab16b9fab7c50577faf1f11574e04723ce6523c7.tar.bz2 |
[svn-r1363] Changes since 19990618
----------------------
./Makefile.in
Running `make' in the top directory recurses into the examples
directory also except if the make target is one of: lib,
progs, check, test, _test, install, uninstall.
./examples/Makefile.in
Changed programs into tests, which just means that `make
tests' does what `make progs' used to do and that `make check'
runs the executables.
./src/H5Tconv.c
Fixed a typo in the unsigned-to-signed native converter for
large types to small types. This fixes a bug on baldric and
possibly other machines for the `dtypes' test.
Also fixed a signed vs. unsigned warning.
-rw-r--r-- | Makefile.in | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index c97bc85..dcd921d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -14,7 +14,7 @@ srcdir=@srcdir@ VPATH=.:@srcdir@ @COMMENCE@ -# Subdirectories in build-order +# Subdirectories in build-order (not including `examples') SUBDIRS=src test tools @TESTPARALLEL@ ############################################################################## @@ -66,11 +66,16 @@ SUBDIRS=src test tools @TESTPARALLEL@ # make used in combination with gcc will maintain dependency # information automatically. # -lib progs tests check test _test uninstall TAGS dep depend: +lib progs check test _test uninstall: @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@) || exit 1; \ done +tests TAGS dep depend: + @@SETX@; for d in $(SUBDIRS) examples; do \ + (cd $$d && $(MAKE) $@) || exit 1; \ + done + install: @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@) || exit 1; \ @@ -88,13 +93,13 @@ H5Tinit.c: mostlyclean distclean maintainer-clean clean mostlyclean: - @@SETX@; for d in $(SUBDIRS); do \ + @@SETX@; for d in $(SUBDIRS) examples; do \ (cd $$d && $(MAKE) $@); \ done -$(RM) conftest conftest.c distclean: - @@SETX@; for d in $(SUBDIRS); do \ + @@SETX@; for d in $(SUBDIRS) examples; do \ (cd $$d && $(MAKE) $@); \ done -$(RM) config/commence config/conclude config/depend @@ -105,7 +110,7 @@ distclean: maintainer-clean: @echo "This command is intented for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." - @@SETX@; for d in $(SUBDIRS); do \ + @@SETX@; for d in $(SUBDIRS) examples; do \ (cd $$d && $(MAKE) $@); \ done -$(RM) config.cache config.log config.status src/H5config.h |