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 ...@@ -18,10 +18,10 @@ install: all
$(LIB): $(LIB)(${LIBOBJ}) $(LIB): $(LIB)(${LIBOBJ})
clean: clean:
$(RM) $(LIBOBJ) $(LIB) *~ $(RM) -f $(LIBOBJ) $(LIB) *~
cleandep: cleandep:
$(RM) $(LIBDEP) $(RM) -f $(LIBDEP)
realclean: clean cleandep realclean: clean cleandep
......
...@@ -228,16 +228,16 @@ $(LIB): force ...@@ -228,16 +228,16 @@ $(LIB): force
$(MAKE) -C $(LIBDIR) $(MAKE) -C $(LIBDIR)
clean: clean:
$(RM) $(OBJ) $(TST) *~ $(RM) -f $(OBJ) $(TST) *~
cleandep: clean cleandep: clean
$(RM) $(DEP) $(RM) -f $(DEP)
cleanout: cleanout:
$(RM) -r *.pid *.out* *.test* *.state $(RM) -f -r *.pid *.out* *.test* *.state
%.cleanout: % %.cleanout: %
$(RM) -r $<.pid $<.out* $<.test* $<.*.test $<.state $(RM) -f -r $<.pid $<.out* $<.test* $<.*.test $<.state
realclean: cleandep cleanout realclean: cleandep cleanout
......
...@@ -69,16 +69,16 @@ $(LIB): force ...@@ -69,16 +69,16 @@ $(LIB): force
$(MAKE) -C $(LIBDIR) $(MAKE) -C $(LIBDIR)
clean: clean:
$(RM) $(OBJ) $(TST) *~ $(RM) -f $(OBJ) $(TST) *~
cleandep: clean cleandep: clean
$(RM) $(DEP) $(RM) -f $(DEP)
%.cleanout: % %.cleanout: %
$(RM) -r $<.pid $<.out* $<.test $(RM) -f -r $<.pid $<.out* $<.test
cleanout: cleanout:
$(RM) *.pid *.out* *.test* $(RM) -f *.pid *.out* *.test*
realclean: cleandep cleanout realclean: cleandep cleanout
......
...@@ -68,16 +68,16 @@ $(LIB): force ...@@ -68,16 +68,16 @@ $(LIB): force
$(MAKE) -C $(LIBDIR) $(MAKE) -C $(LIBDIR)
clean: clean:
$(RM) $(OBJ) $(TST) *~ $(RM) -f $(OBJ) $(TST) *~
cleandep: clean cleandep: clean
$(RM) $(DEP) $(RM) -f $(DEP)
%.cleanout: % %.cleanout: %
$(RM) -r $<.pid $<.out* $<.test $(RM) -f -r $<.pid $<.out* $<.test
cleanout: cleanout:
$(RM) *.pid *.out* *.test chew* $(RM) -f *.pid *.out* *.test chew*
realclean: cleandep cleanout 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