diff options
author | lrknox <lrknox> | 2017-04-21 19:32:45 (GMT) |
---|---|---|
committer | lrknox <lrknox> | 2017-04-21 19:32:45 (GMT) |
commit | 7bd516f2ead21e8470cc25c0b664ad6b56c723a0 (patch) | |
tree | a5e18ecf1179c161f3d426c29b3a272df67aebd2 /tools/test/h5dump/Makefile.am | |
parent | 6ef69b7b1748a48c236c60f45a1ee590de7b5194 (diff) | |
download | hdf5-7bd516f2ead21e8470cc25c0b664ad6b56c723a0.zip hdf5-7bd516f2ead21e8470cc25c0b664ad6b56c723a0.tar.gz hdf5-7bd516f2ead21e8470cc25c0b664ad6b56c723a0.tar.bz2 |
Our best effort to build dynamic plugin tests and not install them with
"make install". It seems the install-exec-hook doesn't remove the last
to be installed.
Diffstat (limited to 'tools/test/h5dump/Makefile.am')
-rw-r--r-- | tools/test/h5dump/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/test/h5dump/Makefile.am b/tools/test/h5dump/Makefile.am index 8723c65..d42afb0 100644 --- a/tools/test/h5dump/Makefile.am +++ b/tools/test/h5dump/Makefile.am @@ -41,12 +41,15 @@ LDADD=$(LIBH5TOOLS) $(LIBHDF5) if HAVE_SHARED_CONDITIONAL # Build it as shared library if configure is enabled for shared library. - lib_LTLIBRARIES=libdynlibdump.la + dyn_LTLIBRARIES=libdynlibdump.la libdynlibdump_la_SOURCES=dynlib_dump.c libdynlibdump_la_LDFLAGS = -avoid-version -module -shared -export-dynamic +libdynlibdump.la: $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_DEPENDENCIES) $(EXTRA_libdynlibdump_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdynlibdump_la_LINK) $(am_libdynlibdump_la_rpath) $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_LIBADD) + install-exec-hook: - $(RM) $(DESTDIR)$(libdir)/*dynlib* + $(RM) $(DESTDIR)$(dyndir)/*dynlib* endif # Temporary files. *.h5 are generated by h5dumpgentest. They should |