diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-15 23:25:35 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-15 23:25:35 (GMT) |
commit | 95d5ff5a11617cf5b71b5cb7ac296a948faaac65 (patch) | |
tree | 530565958b0d6896e07382b8a1988ede810d39ae /c++/Makefile.in | |
parent | 0b0bfd9363a8f177641eb206b4fa55462821f06f (diff) | |
download | hdf5-95d5ff5a11617cf5b71b5cb7ac296a948faaac65.zip hdf5-95d5ff5a11617cf5b71b5cb7ac296a948faaac65.tar.gz hdf5-95d5ff5a11617cf5b71b5cb7ac296a948faaac65.tar.bz2 |
[svn-r3146] Purpose:
Bug Fix?
Description:
Possible that some makes don't like a trailing \ at the end of a
comment.
Solution:
Removed it
Platforms tested:
Linux
Diffstat (limited to 'c++/Makefile.in')
-rw-r--r-- | c++/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/Makefile.in b/c++/Makefile.in index 12b8ac6..9da76fe 100644 --- a/c++/Makefile.in +++ b/c++/Makefile.in @@ -72,7 +72,7 @@ lib progs check test _test uninstall: (cd $$d && $(MAKE) $@) || exit 1; \ done -## @@SETX@; for d in $(SUBDIRS) examples; do \ +## @@SETX@; for d in $(SUBDIRS) examples; do tests TAGS dep depend: @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@) || exit 1; \ @@ -87,14 +87,14 @@ install: .PHONY: all lib progs test _test install uninstall dep depend clean \ mostlyclean distclean maintainer-clean -## @@SETX@; for d in $(SUBDIRS) examples; do \ +## @@SETX@; for d in $(SUBDIRS) examples; do clean mostlyclean: @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@); \ done -$(RM) conftest conftest.c -## @@SETX@; for d in $(SUBDIRS) examples; do \ +## @@SETX@; for d in $(SUBDIRS) examples; do distclean: @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@); \ |