diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-12-10 17:21:12 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-12-10 17:21:12 (GMT) |
commit | 216b84a9ab8d51485faf33b0d3de635b6242113a (patch) | |
tree | 0a0cefd780c62ea927a9853e0031ed63c0595fb0 /perform/Makefile.in | |
parent | 7ba22536537c6791c791041841b96014b1364eb7 (diff) | |
download | hdf5-216b84a9ab8d51485faf33b0d3de635b6242113a.zip hdf5-216b84a9ab8d51485faf33b0d3de635b6242113a.tar.gz hdf5-216b84a9ab8d51485faf33b0d3de635b6242113a.tar.bz2 |
[svn-r4686] Purpose:
Bug fix
Description:
LIBTOOLS has to come before LIBHDF5 in order to link in HDF5 API.
Platforms tested:
modi4(pp), eirene (serial and pp).
Diffstat (limited to 'perform/Makefile.in')
-rw-r--r-- | perform/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perform/Makefile.in b/perform/Makefile.in index c99ca07..c04fe32 100644 --- a/perform/Makefile.in +++ b/perform/Makefile.in @@ -14,7 +14,7 @@ srcdir=@srcdir@ CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/src -I$(top_srcdir)/tools/lib @CPPFLAGS@ LIBHDF5=../src/libhdf5.la LIBH5TEST=../test/libh5test.la -LIBH5TOOLS=../tools/lib/libh5tools.la +LIBTOOLS=../tools/lib/libh5tools.la ## These are the programs that `make all' or `make tests' will build and which ## `make check' will run. List them in the order they should be run. @@ -42,7 +42,7 @@ $(TEST_PROGS) $(TEST_PROGS_PARA): $(LIBHDF5) pio_perf: $(PIO_PERF_OBJ) @$(LT_LINK_EXE) $(CFLAGS) -o $@ $(PIO_PERF_OBJ) $(LIBH5TEST) \ - $(LIBHDF5) $(LDFLAGS) $(LIBH5TOOLS) $(LIBS) + $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) perf: perf.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ perf.lo $(LIBH5TEST) $(LIBHDF5) \ |