Commit 8afd8a4c authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

zdtm: make -- Add -f key on clean* ops

Otherwise if no such files present I'm getting warnings.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 40dcaf88
......@@ -18,10 +18,10 @@ install: all
$(LIB): $(LIB)(${LIBOBJ})
clean:
$(RM) $(LIBOBJ) $(LIB) *~
$(RM) -f $(LIBOBJ) $(LIB) *~
cleandep:
$(RM) $(LIBDEP)
$(RM) -f $(LIBDEP)
realclean: clean cleandep
......
......@@ -228,16 +228,16 @@ $(LIB): force
$(MAKE) -C $(LIBDIR)
clean:
$(RM) $(OBJ) $(TST) *~
$(RM) -f $(OBJ) $(TST) *~
cleandep: clean
$(RM) $(DEP)
$(RM) -f $(DEP)
cleanout:
$(RM) -r *.pid *.out* *.test* *.state
$(RM) -f -r *.pid *.out* *.test* *.state
%.cleanout: %
$(RM) -r $<.pid $<.out* $<.test* $<.*.test $<.state
$(RM) -f -r $<.pid $<.out* $<.test* $<.*.test $<.state
realclean: cleandep cleanout
......
......@@ -69,16 +69,16 @@ $(LIB): force
$(MAKE) -C $(LIBDIR)
clean:
$(RM) $(OBJ) $(TST) *~
$(RM) -f $(OBJ) $(TST) *~
cleandep: clean
$(RM) $(DEP)
$(RM) -f $(DEP)
%.cleanout: %
$(RM) -r $<.pid $<.out* $<.test
$(RM) -f -r $<.pid $<.out* $<.test
cleanout:
$(RM) *.pid *.out* *.test*
$(RM) -f *.pid *.out* *.test*
realclean: cleandep cleanout
......
......@@ -68,16 +68,16 @@ $(LIB): force
$(MAKE) -C $(LIBDIR)
clean:
$(RM) $(OBJ) $(TST) *~
$(RM) -f $(OBJ) $(TST) *~
cleandep: clean
$(RM) $(DEP)
$(RM) -f $(DEP)
%.cleanout: %
$(RM) -r $<.pid $<.out* $<.test
$(RM) -f -r $<.pid $<.out* $<.test
cleanout:
$(RM) *.pid *.out* *.test chew*
$(RM) -f *.pid *.out* *.test chew*
realclean: cleandep cleanout
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment