2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00

simplify dummy rules

Use true instead of echo >/dev/null -- same effect, less bytes.

Signed-off-by: Kir Kolyshkin <kir@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Kir Kolyshkin
2014-01-08 03:16:00 +04:00
committed by Pavel Emelyanov
parent 55fca14c80
commit fe0a9670f3
4 changed files with 4 additions and 4 deletions

View File

@@ -230,7 +230,7 @@ cleanup-y += $(_cleanup-y)
.PHONY: all clean
all: $(_all)
@echo > /dev/null
@true
clean:
$(E) " CLEANUP " $(obj)

View File

@@ -49,4 +49,4 @@ endef
## together with .SUFFIXES not cleaned, this
## will slow down the build procedure
scripts/Makefile.rules::
@echo > /dev/null
@true

View File

@@ -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

View File

@@ -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