mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r3865] Purpose:
Bug Fix Description: The "-$(RM)" was failing for make distclean. Solution: Removed the "-". Platforms tested: Linux
This commit is contained in:
parent
6b23bf8924
commit
7c15c639fa
@ -139,13 +139,13 @@ uninstall-doc:
|
||||
##
|
||||
mostlyclean:
|
||||
@if test -n "$(LIB_OBJ)"; then \
|
||||
-$(RM) $(LIB_OBJ) $(LIB_OBJ:.lo=.o); \
|
||||
$(RM) $(LIB_OBJ) $(LIB_OBJ:.lo=.o); \
|
||||
fi
|
||||
@if test -n "$(TEST_OBJ)"; then \
|
||||
-$(RM) $(TEST_OBJ) $(TEST_OBJ:.lo=.o); \
|
||||
$(RM) $(TEST_OBJ) $(TEST_OBJ:.lo=.o); \
|
||||
fi
|
||||
@if test -n "$(PROG_OBJ)" -o -n "$(MOSTLYCLEAN)"; then \
|
||||
-$(RM) $(PROG_OBJ) $(PROG_OBJ:.lo=.o) $(MOSTLYCLEAN); \
|
||||
$(RM) $(PROG_OBJ) $(PROG_OBJ:.lo=.o) $(MOSTLYCLEAN); \
|
||||
fi
|
||||
|
||||
## Like `mostlyclean' except it also removes the final targets: things like
|
||||
@ -154,7 +154,7 @@ mostlyclean:
|
||||
##
|
||||
clean: mostlyclean
|
||||
@if test -n "$(LIB)" -o -n "$(TEST_PROGS)" -o -n "$(PROGS)" -o -n "$(CLEAN)"; then \
|
||||
-$(RM) $(LIB) $(TEST_PROGS) $(PROGS) $(CLEAN); \
|
||||
$(RM) $(LIB) $(TEST_PROGS) $(PROGS) $(CLEAN); \
|
||||
fi
|
||||
-$(RM) -r .libs
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user