diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 33b5ac7..1a1c446 100644 --- a/Makefile.in +++ b/Makefile.in @@ -9,6 +9,7 @@ # each subdirectory manually. # @COMMENCE@ +top_srcdir=@top_srcdir@ # Subdirectories in build-order SUBDIRS=src test tools @TESTPARALLEL@ @@ -62,11 +63,17 @@ SUBDIRS=src test tools @TESTPARALLEL@ # make used in combination with gcc will maintain dependency # information automatically. # -lib progs tests check test _test install uninstall TAGS dep depend: +lib progs tests check test _test uninstall TAGS dep depend: @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@) || exit 1; \ done +install: + @@SETX@; for d in $(SUBDIRS); do \ + (cd $$d && $(MAKE) $@) || exit 1; \ + done + @$(LT) --mode=finish $(libdir); + # Number format detection H5detect: (cd src && $(MAKE) $@) @@ -99,3 +106,4 @@ maintainer-clean: done -$(RM) config.cache config.log config.status src/H5config.h -$(RM) configure src/H5config.h.in + |