Commit ccb2b04f authored by Andrey Vagin's avatar Andrey Vagin Committed by Pavel Emelyanov

zdtm: don't print useless messages from Makefile

Signed-off-by: 's avatarAndrey Vagin <avagin@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 9a0eedb6
...@@ -18,3 +18,13 @@ ifeq ($(ARCH),x86_64) ...@@ -18,3 +18,13 @@ ifeq ($(ARCH),x86_64)
endif endif
CPPFLAGS += -iquote $(LIBDIR)/arch/$(ARCH)/include CPPFLAGS += -iquote $(LIBDIR)/arch/$(ARCH)/include
ifeq ($(strip $(V)),)
E = @echo
Q = @
else
E = @\#
Q =
endif
export E Q
...@@ -241,7 +241,7 @@ socket_listen6: override CFLAGS += -D ZDTM_IPV6 ...@@ -241,7 +241,7 @@ socket_listen6: override CFLAGS += -D ZDTM_IPV6
sigpending: override LDLIBS += -lrt sigpending: override LDLIBS += -lrt
$(LIB): force $(LIB): force
$(MAKE) -C $(LIBDIR) $(Q) $(MAKE) -C $(LIBDIR)
clean: clean:
$(RM) -f $(OBJ) $(TST) *~ $(RM) -f $(OBJ) $(TST) *~
...@@ -253,7 +253,7 @@ cleanout: ...@@ -253,7 +253,7 @@ cleanout:
$(RM) -f -r *.pid *.out* *.test* *.state $(RM) -f -r *.pid *.out* *.test* *.state
%.cleanout: % %.cleanout: %
$(RM) -f -r $<.pid $<.out* *$<.test* $<.*.test $<.state $(Q) $(RM) -f -r $<.pid $<.out* *$<.test* $<.*.test $<.state
realclean: cleandep cleanout realclean: cleandep cleanout
......
...@@ -66,7 +66,7 @@ socket-tcp: override CFLAGS += -D STREAM ...@@ -66,7 +66,7 @@ socket-tcp: override CFLAGS += -D STREAM
socket-tcp6: override CFLAGS += -D ZDTM_IPV6 -D STREAM socket-tcp6: override CFLAGS += -D ZDTM_IPV6 -D STREAM
$(LIB): force $(LIB): force
$(MAKE) -C $(LIBDIR) $(Q) $(MAKE) -C $(LIBDIR)
clean: clean:
$(RM) -f $(OBJ) $(TST) *~ $(RM) -f $(OBJ) $(TST) *~
...@@ -75,7 +75,7 @@ cleandep: clean ...@@ -75,7 +75,7 @@ cleandep: clean
$(RM) -f $(DEP) $(RM) -f $(DEP)
%.cleanout: % %.cleanout: %
$(RM) -f -r $<.pid $<.out* $<.test $(Q) $(RM) -f -r $<.pid $<.out* $<.test
cleanout: cleanout:
$(RM) -f *.pid *.out* *.test* $(RM) -f *.pid *.out* *.test*
......
...@@ -67,7 +67,7 @@ fork2: override CFLAGS += -D FORK2 ...@@ -67,7 +67,7 @@ fork2: override CFLAGS += -D FORK2
chmod +x $@ chmod +x $@
$(LIB): force $(LIB): force
$(MAKE) -C $(LIBDIR) $(Q) $(MAKE) -C $(LIBDIR)
clean: clean:
$(RM) -f $(OBJ) $(TST) *~ $(RM) -f $(OBJ) $(TST) *~
...@@ -76,7 +76,7 @@ cleandep: clean ...@@ -76,7 +76,7 @@ cleandep: clean
$(RM) -f $(DEP) $(RM) -f $(DEP)
%.cleanout: % %.cleanout: %
$(RM) -f -r $<.pid $<.out* $<.test chew_$<.test* $(Q) $(RM) -f -r $<.pid $<.out* $<.test chew_$<.test*
cleanout: cleanout:
$(RM) -f *.pid *.out* *.test chew* $(RM) -f *.pid *.out* *.test chew*
......
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