Commit fe0a9670 authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Pavel Emelyanov

simplify dummy rules

Use true instead of echo >/dev/null -- same effect, less bytes.
Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 55fca14c
......@@ -230,7 +230,7 @@ cleanup-y += $(_cleanup-y)
.PHONY: all clean
all: $(_all)
@echo > /dev/null
@true
clean:
$(E) " CLEANUP " $(obj)
......
......@@ -49,4 +49,4 @@ endef
## together with .SUFFIXES not cleaned, this
## will slow down the build procedure
scripts/Makefile.rules::
@echo > /dev/null
@true
......@@ -22,4 +22,4 @@ $(VERSION_HEADER): Makefile scripts/Makefile.version
## together with .SUFFIXES not cleaned, this
## will slow down the build procedure
scripts/Makefile.version::
@echo > /dev/null
@true
......@@ -14,7 +14,7 @@ DEPEND.c = $(COMPILE.c) -MM -MP
$(DEPEND.c) $(OUTPUT_OPTION) $<
all: $(LIB)
@echo > /dev/null
@true
install: all
.PHONY: all install
......
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