mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r3535] Purpose:
Bug Fix Description: We weren't doing cleans or installs in the lib/ subdirectory. Solution: Added lib to the for loops. Platforms tested: LInux
This commit is contained in:
parent
b545a4bb03
commit
84d46a8d50
@ -50,36 +50,36 @@ check tests test _test: $(PROGS)
|
||||
done
|
||||
|
||||
uninstall:
|
||||
@@SETX@; for d in $(SUBDIRS); do \
|
||||
@@SETX@; for d in lib $(SUBDIRS); do \
|
||||
(cd $$d && $(MAKE) $@) || exit 1; \
|
||||
done
|
||||
|
||||
install:
|
||||
@@SETX@; for d in $(SUBDIRS); do \
|
||||
@@SETX@; for d in lib $(SUBDIRS); do \
|
||||
(cd $$d && $(MAKE) $@) || exit 1; \
|
||||
done
|
||||
|
||||
install-doc:
|
||||
@@SETX@; for d in $(SUBDIRS); do \
|
||||
@@SETX@; for d in lib $(SUBDIRS); do \
|
||||
(cd $$d && $(MAKE) $@); \
|
||||
done
|
||||
|
||||
.PHONY: all lib progs test _test install uninstall dep depend clean \
|
||||
.PHONY: all lib progs test _test install uninstall dep depend clean \
|
||||
mostlyclean distclean maintainer-clean
|
||||
|
||||
clean mostlyclean:
|
||||
@@SETX@; for d in $(SUBDIRS); do \
|
||||
@@SETX@; for d in lib $(SUBDIRS); do \
|
||||
(cd $$d && $(MAKE) $@); \
|
||||
done
|
||||
|
||||
distclean:
|
||||
@@SETX@; for d in $(SUBDIRS); do \
|
||||
@@SETX@; for d in lib $(SUBDIRS); do \
|
||||
(cd $$d && $(MAKE) $@); \
|
||||
done
|
||||
-$(RM) Makefile
|
||||
|
||||
maintainer-clean:
|
||||
@@SETX@; for d in $(SUBDIRS); do \
|
||||
@@SETX@; for d in lib $(SUBDIRS); do \
|
||||
(cd $$d && $(MAKE) $@); \
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user