From ab16b9fab7c50577faf1f11574e04723ce6523c7 Mon Sep 17 00:00:00 2001 From: Robb Matzke Date: Fri, 18 Jun 1999 13:29:11 -0500 Subject: [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. --- Makefile.in | 15 ++++++++++----- 1 file 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 -- cgit v0.12