diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-30 20:17:25 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-30 20:17:25 (GMT) |
commit | 6e6366aec26b325317bdb2cbe90173b1509069bd (patch) | |
tree | b2f39a407be83ff860fb47d140fc424d43b30f79 /Makefile.in | |
parent | b227b388533896337f436f01763ad26def14844c (diff) | |
download | hdf5-6e6366aec26b325317bdb2cbe90173b1509069bd.zip hdf5-6e6366aec26b325317bdb2cbe90173b1509069bd.tar.gz hdf5-6e6366aec26b325317bdb2cbe90173b1509069bd.tar.bz2 |
[svn-r205] Changes since 19980130
----------------------
./INSTALL
./Makefile.dist
./Makefile.in
./config/conclude.in
Some stupid make's don't know what PHONY means. I added
changed config to _config in the default makefile and added
_test to the other makefiles.
./src/H5Psim.c
A `file_offset' argument got changed to `int' accidently that
causes tests to fail on 64-bit machines. I changed it back to
size_t.
./src/H5T.c
Changed a couple printf formats.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 953e6aa..de6c009 100644 --- a/Makefile.in +++ b/Makefile.in @@ -57,13 +57,13 @@ SUBDIRS=src test # make used in combination with gcc will maintain dependency # information automatically. # -all lib progs test install uninstall TAGS dep depend: +all lib progs test _test install uninstall TAGS dep depend: @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@) || exit 1; \ done -.PHONY: all lib progs test install uninstall dep depend clean mostlyclean \ - distclean maintainer-clean +.PHONY: all lib progs test _test install uninstall dep depend clean \ + mostlyclean distclean maintainer-clean clean mostlyclean: @@SETX@; for d in $(SUBDIRS); do \ |