diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-11-16 05:06:02 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-11-16 05:06:02 (GMT) |
commit | c3570e984a10701abcef85f3ada67b76d602c4cf (patch) | |
tree | e7d7da34248d6b3b261b0648c9e2488720589ae8 /src/Makefile.in | |
parent | 855248c589d222372d8161483aacb5802955388a (diff) | |
download | hdf5-c3570e984a10701abcef85f3ada67b76d602c4cf.zip hdf5-c3570e984a10701abcef85f3ada67b76d602c4cf.tar.gz hdf5-c3570e984a10701abcef85f3ada67b76d602c4cf.tar.bz2 |
[svn-r913] Added $(LDFLAGS) to the make command for H5detect.
Tested on O2K in both parallel and serial modes.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index bf5dd48..d6629a6 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -48,6 +48,6 @@ H5Tinit.c: H5detect # no $(LIB) in the action below since that's being made now. H5detect: H5detect.o - $(CC) $(CFLAGS) -o $@ H5detect.o $(LIBS) + $(CC) $(CFLAGS) -o $@ H5detect.o $(LDFLAGS) $(LIBS) @CONCLUDE@ |